-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (27 loc) · 1.01 KB
/
Copy pathindex.html
File metadata and controls
32 lines (27 loc) · 1.01 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width= device-width, initial-scale=1.0">
<title>Login Page</title>
<link rel = "stylesheet" href = "login_page.css">
<script defer src = "login_page.js"></script>
</head>
<body>
<main id = "main-holder">
<h1 id="login-header">Login Here</h1>
<br>
<p> <img class="image" src="images/loginimage.jpg"></p>
<div id="login-error-msg-holder">
<p id = "login-error-msg"> Invalid Username <span id = "error-msg-second-line"> and/or password </span></p>
</div>
<form id = "login-form">
<input type="text" name = "username" id = "username-field" class="login-form-field" placeholder = "Enter your Username">
<input type="text" name="password" id = "password-field" class="login-form-field" placeholder= "Enter Your Password (Min. 8 Characters)">
<br>
<input type="submit" value="Go !!" id="login-form-submit">
</a>
</form>
</main>
</body>
</html>