-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php
More file actions
23 lines (23 loc) · 752 Bytes
/
index.php
File metadata and controls
23 lines (23 loc) · 752 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<title>Login</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<h1>My Dundee Portal</h1>
<form action="login.php" method="post">
<table>
<tr>
<td>Email: <input name="email" type="text" onblur="validateLoginForm()"></td>
</tr>
<tr>
<td>Password: <input name="password" type="password" onblur="validateLoginForm()"></td>
</tr>
</table>
<input id="submit" type="Submit" value="Login">
</form>
<p id="validationStatus"></p>
</body>
</html>