-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstu-signup.html
165 lines (110 loc) · 6.76 KB
/
stu-signup.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
153
154
155
156
157
158
159
160
161
162
163
164
165
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Student Sign Up</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css">
<link rel="stylesheet" href="jsm.css">
</head>
<body>
<header class="header">
<section class="flex">
<a href="index.html" class="logo">JSM</a>
<div class="icons">
<div id="menu-btn" class="fas fa-bars"></div>
<div id="search-btn" class="fas fa-search"></div>
<div id="user-btn" class="fas fa-user"></div>
<div id="toggle-btn" class="fas fa-sun"></div>
</div>
<div class="profile">
<div class="flex-btn">
<a href="#" class="option-btn">Register</a>
</div>
</div>
</section>
</header>
<div class="side-bar">
<div id="close-btn">
<i class="fas fa-times"></i>
</div>
<nav class="navbar">
<div class="nav-image"><img src="images/student5.png" width="250" height="200" alt="JSM"></div>
<a href="index.html"><i class="fas fa-home"></i><span>Home</span></a>
<a href="about.html"><i class="fas fa-address-card"></i><span>About us</span></a>
<a href="courses.html"><i class="fas fa-graduation-cap"></i><span>Courses</span></a>
<a href="contact.html"><i class="fas fa-headset"></i><span>Contact us</span></a>
</nav>
</div>
<section class="form-container">
<form action="" method="post" enctype="multipart/form-data">
<h3>Create Student Account</h3>
<p>Full Name <span>*</span></p>
<input type="text" name="name" placeholder="Enter your Surname First" required maxlength="50" class="box">
<p>NIN <span>*</span></p>
<input type="number" name="nin" placeholder="Enter your National Identification Number" required maxlength="50" class="box">
<p>Gender <span>*</span></p>
<select class="box" name="gender" required>
<option value="male">Male</option>
<option value="female">Female</option>
<option value="option" selected>Choose your Gender</option>
</select>
<!-- <input type="gender" name="gender" placeholder="Enter your Gender" required maxlength="50" class="box">-->
<p>Phone Number <span>*</span></p>
<input type="tel" name="phone number" placeholder="Enter your Phone Number" required maxlength="50" class="box">
<p>Your Email Address<span>*</span></p>
<input type="email" name="email" placeholder="Enter your Email Address" required maxlength="50" class="box">
<p>Create Password <span>*</span></p>
<input type="password" name="pass" placeholder="Create Password" required maxlength="20" class="box">
<p>Confirm Password <span>*</span></p>
<input type="password" name="c_pass" placeholder="Confirm your Password" required maxlength="20" class="box">
<p>Address <span>*</span></p>
<input type="address" name="address" placeholder="Enter your Current Address with State" required maxlength="50" class="box">
<p>State<span>*</span></p>
<input type="state" name="state" placeholder="Enter your State of Origin" required maxlength="50" class="box">
<p>School<span>*</span></p>
<input type="sch" name="sch" placeholder="Enter your Secondary School name with address" required maxlength="50" class="box">
<p>Birthday<span>*</span></p>
<input type="date" name="birth" placeholder="Enter your Birth Date" required maxlength="50" class="box">
<p>Sec. Sch. Set<span>*</span></p>
<input type="date" name="set" placeholder="Enter your Graduation Year" required maxlength="50" class="box">
<p>Upload Picture <span>*</span></p>
<input type="file" name="picture" placeholder="Upload your Picture" accept="image/*" required class="box">
<p>Add Parental/Guidance Consent Form <span>*</span></p>
<input type="file" name="any" placeholder="Upload the Form" accept="image/*" required class="box">
<h1>BIOMETRIC: Fingerprint or Facial Recognition</h1> <br>
<!-- <a href="login.html" class="btn"></a>-->
<input type="submit" value="Register" onclick="myFunctione()" name="submit" class="btn">
<input type="reset" value="cancel" name="submit" class="ibtn">
</form>
</section>
<footer class="footer">
<div class="footer-container">
<div class="policy">
<p>Privacy Policy</p> <br>
<p>User Agreement</p> <br>
<p>Cookie Policy</p> <br>
<p>Copyright Policy</p>
</div>
<div class="more">
<span>Download App for better experience.</span> <br> <br>
<span>Listen to our Podcast for audio versions.</span> <br> <br>
<span>Community Guidelines.</span> <br><br>
<span>Help Center.</span>
</div>
</div>
JSM © 2024 by <span>LearnMakers Team</span>
</footer>
<!-- custom js file link -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script type="text" src="jms.js"></script>
<script src="https://unpkg.com/compromise"></script> <script src="jms.js"></script>
<script src="jsm.js"></script>
<script>
function myFunctione(){
window.location.href="https://3mtt-c2-hack-jsm.vercel.app/login.html";
Event.preventDefault();
}
</script>
</body>
</html>