-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.php
31 lines (26 loc) · 898 Bytes
/
login.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
31
<!-- login.php -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lecturer Login</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<h2>Lecturer Login</h2>
<form action="login_process.php" method="post">
<!-- Input field for Email -->
<label for="email">Email:</label>
<input type="email" name="email" required>
<!-- Input field for Password -->
<label for="password">Password:</label>
<input type="password" name="password" required>
<!-- Submit button -->
<input type="submit" value="Login">
<br>
<p>Don't have an account? <a href="register.php">Register</a></p>
</form>
</body>
</html>
<?php include('footer.php'); ?>