-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteacher_profile.php
More file actions
161 lines (147 loc) · 5.72 KB
/
teacher_profile.php
File metadata and controls
161 lines (147 loc) · 5.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<meta charset="UTF-8">
<title>Teacherprofile</title>
<!-- meta -->
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<!-- favicon -->
<link rel="shortcut icon" type="image/x-icon" href="" />
<!--Import Google Icon Font-->
<link href="http://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!--Import materialize.css-->
<link type="text/css" rel="stylesheet" href="css/materialize.min.css" media="screen,projection"/>
<link rel="stylesheet" type="text/css" href="">
<!--Import jQuery before materialize.js-->
<script src="js/jquery-2.1.1.min.js" type="text/javascript"></script>
<script type="text/javascript" src="js/materialize.min.js"></script>
<script>
$(document).ready(function() {
$('select').material_select();
});
</script>
<style>
.main
{
height: 29px;
color: #728294;
font-family: Lato;
font-size: 26px;
font-weight: 400;
line-height: 29px;
}
.main2
{
height: 29px;
color: #728294;
font-family: Lato;
font-size:15px;
font-weight: 400;
line-height: 29px;
}
.bg
{
background-image: url("images/wallpaper2_1.jpg");
background-repeat: no-repeat;
background-size: 1360px 1000px;
}
.main3
{
height: 29px;
color:black;
font-family: Lato;
font-size:50px;
font-weight: 400;
line-height: 29px;
}
</style>
</head>
<body bgcolor="#e5e5ff">
<br>
<br>
<div class="row">
<div class="col s12 m6">
<div class="card" style="height:540px; width:1000px; margin-left: 160px;">
<br>
<center>
<div class="main3">WELCOME TO R.ED.CUBE</div>
</center>
<br>
<hr>
<center>
<h4 class="main">Set up Your Profile</h4>
</center>
<div class="row">
<form class="col s12" action="t_profile.php" method="post" enctype="multipart/form-data" >
<div class="row">
<div class="main2" style="margin-left: 50px;"> Your Name* </div>
<select class="browser-default" style="width: 100px;height: 30px; margin-left: 50px;" name="title">
<option value="" disabled selected>Title</option>
<option value="Mr.">Mr.</option>
<option value="Mrs.">Mrs.</option>
<option value="Ms.">Ms.</option>
<option value="Dr.">Dr.</option>
</select>
<div class="row" style="margin-left: 170px; margin-top: -60px;">
<div class="input-field col s3">
<input placeholder="First Name" id="first_name" name="firstname" type="text" class="validate">
</div>
<div class="input-field col s3">
<input id="last_name" type="text" class="validate" name="lastname" placeholder="Last Name">
</div>
</div>
</div>
<div class="main2" style="margin-left: 50px; ">What you teach?</div>
<div class="input-field col s1" style="margin-left:5%;margin-top:;">
<select name="grade">
<option value="" disabled selected>Grade</option>
<option value="1">1<sup>st</sup></option>
<option value="2">2<sup>nd</sup></option>
<option value="3">3<sup>rd</sup></option>
<option value="4">4<sup>th</sup></option>
<option value="5">5<sup>th</sup></option>
<option value="6">6<sup>th</sup></option>
<option value="7">7<sup>th</sup></option>
<option value="8">8<sup>th</sup></option>
<option value="9">9<sup>th</sup></option>
<option value="10">10<sup>th</sup></option>
<option value="11">11<sup>th</sup></option>
<option value="12">12<sup>th</sup></option>
</select>
</div>
<div class="input-field col s2">
<select name="subjectarea">
<option value="" disabled selected>Subject area</option>
<option value="science">Science</option>
<option value="maths">Maths</option>
<option value="S.S">Social Science</option>
<option value="hindi">Hindi</option>
</select>
</div>
<br>
<br>
<br>
<br>
<font style="margin-left:6%;">PHOTO:
</font>
<input type="file" name="Photos" class="waves-effect waves-light" style="margin-left: 25px; heigth:20px; widht:50px;">
<br>
<br>
<hr>
<center>
<button class="btn waves-effect waves-light" type="submit" name="action">Submit
<i class="material-icons right">send</i>
</button>
</center>
</form>
</div>
</div>
</div>
</div>
</body>
</html>