-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.html
35 lines (34 loc) · 927 Bytes
/
login.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles.css">
<title>Secretary's Login Page</title>
</head>
<body class="centered">
<div>
<h1>MyBusApp</h1>
<h2>Secretary's Login Page</h2>
</div>
<img src="logo.jpg" alt="Company Logo" width="200" height="200" class="center">
<div>
</div>
<div>
<p>Please identify your credentials to use MyBusApp</p>
<form action="login.php" method="POST">
<input type="text" name="username" placeholder="Username"><br/>
<input type="password" name="password" placeholder="Password"><br/>
<button type="submit">Login</submit></button>
<div>
<p>Secretary with no account yet!!!</p>
<a href="signup.html">Sign Up</a>
</div>
</form>
</div>
<div>
<a href="index.php">
<p style="text-align: center;"><button>Return to First Page</button></p>
</a>
<p>Created by Group 2.</p>
</div>
</body>
</html>