-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
29 lines (25 loc) · 1.23 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Employee Login</title>
<link rel="stylesheet" href="css/FormTemplate1.css">
</head>
<body>
<div class="main">
<form class="form" id="loginForm" method="get" action="./php/indexPHP.php">
<h1 class="page_title">Login to Employee Portal</h1>
<input type="text" class="form__input" id="employeeID" name="employeeID" autofocus="" placeholder="Employee ID"> <br><br>
<input type="password" class="form__input" id="password" name="password" autofocus="" placeholder="Password"> <br><br>
<input type="submit" id="login" name="login" class="inputStyle" value="LogIn"> <br><br>
<a href="ResetPassword.html" class="form__link">Forgot your password?</a> <br><br>
<a class="form__link" href="firstLogIn.html" id="linkFirstTime">First Time User?</a><br> <br>
<a class="form__link" href="adminLogin.php" id="linkAdminLogin">Admin Login</a>
</form>
</div>
<div class = "FAQ">
<div class = "content"> <p><a href="FAQ.html"> FAQ</a></p></div>
<img src="burger.gif" alt="burger">
</div>
</body>
</html>