-
Notifications
You must be signed in to change notification settings - Fork 0
/
staff.html
50 lines (50 loc) · 3.05 KB
/
staff.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
<!DOCTYPE HTML>
<html lang="en-IN">
<head>
<title>Staff Portal</title>
<meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="img/portal_icon.png">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Raleway">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<script type="text/javascript" language="javascript" src="js/validateStaffLogin.js"></script>
</head><body style="background:#fafafa;">
<section class="container col-md-4 bg-white" style="margin-top:80px;border-radius:6px;box-shadow:0px 0px 8px rgba(0,0,0,0.1);">
<br><div class="text-center"><span style="font-size:22px;" class="font-weight-bold">Sign in</span><br>to continue to Staff Portal</div><br><br>
<form class="form container text-center" method="POST" action="php/profile/staffLog.php">
<input type="text" placeholder="Enter your E-Mail Address" name="staffMail" class="col-md-10" id="staffMailbox" autofocus><br><br>
<input type="password" placeholder="Enter your Password" name="staffPass" class="col-md-10" id="staffPassbox"><br><br>
<input type="checkbox" id="staffPasscheck" class="form-check-input" onclick="showPass()"> Show Password<br><br>
<div class="col-md-10 container"><a class="col-md-3 font-weight-bold link" style="outline:none;" data-toggle="modal" href="#staffForgotpass">Forgot Password?</a><input type="submit" value="Log In" class="btn col-md-3" id="staffLogbtn"></div><br><br>
</form>
</section>
<div class="modal fade bg-dark" id="staffForgotpass">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header">
<span class="font-weight-bold lead" style="color:#1976D2;">Staff Portal</span>
<button class="close lead" data-dismiss="modal">×</button>
</div>
<div class="modal-body">
<div class="text-center"><span style="font-size:22px;">Find your email</span><br>Enter your email Address to Recover</div><br><br>
<form class="form container text-center" method="post" action="php/forgotStaffMail.php">
<input type="text" placeholder="Enter your Email Address" class="col-md-10" name="staffForgot" id="staffForgotMailbox"><br><br>
<input type="submit" value="Submit" class="btn col-md-3" id="staffForgotBtn">
</form>
</div>
</div>
</div>
</div><br><div class="dropdown container col-md-4">
<button class="btn dropdown-toggle" data-toggle="dropdown" id="portalChange">Select Portal</button>
<div class="dropdown-menu">
<a class="dropdown-item" href="admin.html">Admin Portal</a>
<a class="dropdown-item" href="student.html">Student Portal</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="index.html">HOME</a>
</div>
</div>
</body>
</html>