-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstudentRegistration.php
More file actions
16 lines (15 loc) · 944 Bytes
/
Copy pathstudentRegistration.php
File metadata and controls
16 lines (15 loc) · 944 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<form role="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>
<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 anyone else.</small>
</div>
<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>