-
Notifications
You must be signed in to change notification settings - Fork 0
/
cfaculty.php
30 lines (28 loc) · 1.69 KB
/
cfaculty.php
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
<?php
require 'fhead.php';
?>
<div class="container" >
<br>
<div class="row">
<div class="col-md-4">
<form action="cfaculty1.php" method="POST">
<div class="form-group">
<label>Enter Admin Email ID:</label>
<input type="email" class="form-control" id="emaill" placeholder="Enter Email ID" name="emaill" required>
</div>
<div class="form-group">
<label>Enter the old passwword:</label>
<input type="password" class="form-control" id="oldpass" placeholder="Enter old password" name="oldpass" required pattern="(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{10,}" title="Strong Password should contains min one uppercase, numerics and should be 10 characters long">
</div>
<div class="form-group">
<label>Enter the new password:</label>
<input type="password" class="form-control" id="newpass" placeholder="Enter new password" name="newpass" required pattern="(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{10,}" title="Strong Password should contains min one uppercase, special characters, numerics and should be 10 characters long">
</div>
<div class="form-group">
<label>Confirm new password:</label>
<input type="password" class="form-control" id="newpass" placeholder="Confirm new password" name="cnewpass" required pattern="(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{10,}" title="Strong Password should contains min one uppercase, special characters, numerics and should be 10 characters long">
</div>
<input type="text" id="dept" class="form-control" name="dept" readonly="" value="<?php echo $dept ?>" hidden />
<input id="submit" class="btn btn-primary btn-block" type="submit" value="SUBMIT"/>
</form>
</div></div></div>