-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregt.html
111 lines (109 loc) · 5.13 KB
/
regt.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>KEDU - The Educational Community and Curriculum Platform</title>
<meta name="description" content="KUBO Education, KEDU for short, is KUBO’s online curriculum platform"/>
<meta name="keywords" content="KUBO Robotics, KUBO, KUBO Education, KEDU, Teachers, Students,
Learning Platform">
<link rel="stylesheet" href="assets/css/styles.css">
<script defer src="assets/js/login.js"></script>
<link href="assets/css/upload.css" rel="stylesheet">
<link rel="stylesheet" href="assets/css/styles.css">
<link rel="apple-touch-icon" sizes="180x180" href="assets/images/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/images/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/images/favicon/favicon-16x16.png">
<link rel="manifest" href="assets/images/favicon/site.webmanifest">
<link rel="mask-icon" href="assets/images/favicon/safari-pinned-tab.svg" color="#ffffff">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="theme-color" content="#ffffff">
<link href="https://fonts.googleapis.com/css?family=Lato:100,300,400" rel="stylesheet">
<script defer src="assets/js/fontawesome-all.js"></script>
</head>
<body>
<header>
<div class="logo">
<a href="index.html"><img src="assets/images/kedulogo.png" alt="logo"></a>
</div>
</header>
<div class="supperbox">
<h1>Please Sign Up Here:</h1>
<p>Join our online Educational Community. <br>
and share lessonplans width other teachers across the globe.</p>
<form class="suForm" action="dashb.html" method="post">
<div class="flexi">
<div style="margin-right: 7%;">
<label>First Name:</label> <br>
<input class="signup1" id="fName" type="text" placeholder="Enter your First Name here..."
value="" autofocus required/>
</div>
<div style="margin-left:7%;">
<label>Last Name:</label> <br>
<input class="signup1" type="text" placeholder="Enter your Last Name here..." required/>
</div>
</div>
<div class="flexi">
<div style="margin-right: 7%;">
<label>E-mail:</label><br>
<input class="signup1" id="mail" type="email" placeholder="Enter your E-mail here..."
value="" required/>
</div>
<div style="margin-left:7%;">
<label>Repeat E-mail:</label> <br>
<input class="signup1" type="email" placeholder="Repeat your E-mail here..." required>
</div>
</div>
<div class="flexi">
<div style="margin-right: 7%;">
<label>Password:</label> <br>
<input class="signup1" id="pw" type="password" placeholder="Enter your Password here..."
value="" required/>
</div>
<div style="margin-left:7%;">
<label>Repeat Password:</label> <br>
<input class="signup1" type="password" placeholder="Repeat your Password here..." required/>
</div>
</div>
<div class="flexi">
<div style="margin-right: 7%;">
<label>Gender:</label> <br>
<div class="signup1" style="background-color:white">
<input type="radio" name="gender" value="male" checked >Male
<input type="radio" name="gender" value="female"> Female
</div>
</div>
<div style="margin-left:7%;">
<label>Phone Number:</label> <br>
<input class="signup1" type="tel" placeholder="Enter your Phone Number here...">
</div>
</div>
<div class="flexi">
<div style="margin-right: 7%;">
<label>City:</label> <br>
<input class="signup1" placeholder="Enter your City here...">
</div>
<div style="margin-left:7%;">
<label>Birthday:</label> <br>
<input class="signup1" type="date">
</div>
</div>
<div class="flexi">
<div style="margin-right: 7%;">
<label>Country:</label> <br>
<input class="signup1" placeholder="Enter your Country here...">
</div>
<div style="margin-left:7%;">
<label>School:</label> <br>
<input class="signup1" placeholder="Enter your School here...">
</div>
<div class="signup2" style="margin-right:14.5%;">
<button class="add1" onclick="window.location.href='index.html'">Back</button>
</div>
<div class="signup2" style="margin-left:14.5%;">
<input class="add1" onclick="store()" value="Sign Up" type="submit"/>
</div>
</div>
</form>
</div>
</body>
</html>