-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstudentRegistration.php
More file actions
17 lines (17 loc) · 1.02 KB
/
Copy pathstudentRegistration.php
File metadata and controls
17 lines (17 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!--Student registration-->
<form id="stuRegForm">
<div class="form-group">
<i class="fas fa-user"></i><label for="stuname" class="pl-2 font-weight-bold">Name</label> <small id="statusMsg1"></small>
<input type="text" class="form-control" placeholder="Name" name="stuname" id="stuname">
</div><br>
<div class="form-group">
<i class="fas fa-envelope"></i><label for="stuemail" class="pl-2 font-weight-bold">Email</label> <small id="statusMsg2"></small>
<input type="email" class="form-control" placeholder="Email" name="stuemail" id="stuemail">
<small class="form-text">We'll never share your email with anyoune else.</small>
</div><br>
<div class="form-group">
<i class="fas fa-key"></i><label for="stupass" class="pl-2 font-weight-bold">New Password</label> <small id="statusMsg3"></small>
<input type="password" class="form-control" placeholder="Password" name="stupass" id="stupass">
</div>
</form>
<!--END student registration-->