-
Notifications
You must be signed in to change notification settings - Fork 0
/
regteacher.html
152 lines (109 loc) · 3.97 KB
/
regteacher.html
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
<!DOCTYPE HTML>
<HTML>
<link rel = "stylesheet" type = "text/css" href = "style.css" />
<?php session_start(); ?>
<head>
<title>Register Teachers</title>
<link rel = "icon" href = "logo icon min png.png" type = "image/x-icon">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="top">
<div class="logo">
<a href="index.php"><img src="Images/logo.jpg" class="logo" width="100px" height="100px"/></a>
</div>
<div class="title">
<h3>TITAN MARTIAL CLUB</h3>
</div>
<div class="links">
<a href="index.php"><h4>Home</h4></a>
<a href="about.php"><h4>About Us</h4></a>
<a href="services.php"><h4>Services</h4></a>
<a href="contacts.php"><h4>Contacts</h4></a>
</div>
<!--<div class="loginsignup">
<a href="loginregisterindividual.html"><h4>Login/ Sign Up</h4></a>
</div> -->
</div>
<div class="alter">
<div class="alteringform">
<br>
<form action="adminspace.php"><button type="submit"><h4>Admin Space</h4></button></form>
<form action="regteacher.php" method="POST" enctype="multipart/form-data"><br><br><br>
<input type="text" name="tsc" placeholder="Teacher TSC Number" required><br>
<input type="text" name="nationalid" placeholder="National ID Number" required><br>
<input type="text" name="name" placeholder="Full Name" required><br>
<input type="text" name="phone" placeholder="Phone Number" required><br>
<label>dob</label><input type="date" name="dob" placeholder="Date of Birth" required><br>
<input type="text" name="gender" placeholder="Gender" required><br>
<input type="text" name="year" placeholder="Year Joined" required><br><br>
<!--
<h3>Select Subjects</h3>
<input type="checkbox" id="subject1" name="subject1" value="mathematics">
<label for="subject1">MATHEMATICS</label>
<input type="checkbox" id="subject2" name="subject2" value="english">
<label for="subject2">ENGLISH</label>
<input type="checkbox" id="subject3" name="subject3" value="kiswahili">
<label for="subject3">KISWAHILI</label>
<input type="checkbox" id="subject4" name="subject4" value="chemistry">
<label for="subject4">CHEMISTRY</label>
<input type="checkbox" id="subject5" name="subject5" value="biology">
<label for="subject5">BIOLOGY</label>
<input type="checkbox" id="subject6" name="subject6" value="physics">
<label for="subject6">PHYSICS</label>
<input type="checkbox" id="subject7" name="subject7" value="history">
<label for="subject7">HISTORY</label>
<input type="checkbox" id="subject8" name="subject8" value="cre">
<label for="subject8">CRE</label>
<br><br>
-->
<button name="submit" type="submit" value="submit">Submit</button><br><br><br><br>
</form>
</div>
</div>
</body>
<footer>
<div class="below">
<div class="history">
<h3>History</h3>
<p>Titan Martial Club was formed in early 2020 by the Founders Andrew Konde and Lescer Kanjele, with the aim of Mixed Martial Arts Training for overall body fitness, self- defense, and Martial Arts Demonstrations. </p>
</div>
<div class="contacts">
<h3>Contacts</h3>
<p>Tel:</p>
<p>+254711190225</p>
<p>+254746921790</p>
<p>Email: titanmartialclub@gmail.com</p>
</div>
<div class="quicklinks">
<h3>Social Media</h3>
<a href="https://www.youtube.com/channel/UCA0mzeWRmmV6_BcQucPGC5A" target="_blank">YouTube</a><br><br>
<a href="https://www.instagram.com/titan_martial_club/" target="_blank">Instagram</a><br><br>
<a href="https://www.facebook.com/titanmartialclub" target="_blank">Facebook Page</a><br><br>
<a href="https://www.facebook.com/groups/410427213350712" target="_blank">Facebook Public Group</a><br><br>
</div>
<style>
.below{
background-color: red;
display: flex;
position: relative;
width: 100%;
height: auto;
bottom: 0%;
left: 0%;
}
.below div{
display: inline-block;
text-align: center;
background-color: red;
text-align: left;
color: white;
/*border: 3px solid blue;*/
width: 33.333%;
margin: 0%;
padding: 3%;
}
</style>
</div>
</footer>
</HTML>