-
Notifications
You must be signed in to change notification settings - Fork 313
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (24 loc) · 850 Bytes
/
index.html
File metadata and controls
24 lines (24 loc) · 850 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>JobSimulator.dev</title>
<link rel="stylesheet" href="styles.css" />
<script src="script.js"></script>
</head>
<body>
<form>
<!-- TODO: Fix Logo Rendering Issue-->
<img src="logo.svg" />
<span id="success-message" hidden="true">Success!</span>
<span id="error-message" hidden="true">Invalid Credentials</span>
<label for="email">Email</label>
<!-- TODO: Add HTML Email Validation to Email Input -->
<input id="email" type="text" placeholder="Enter your email" />
<label for="password">Password</label>
<!-- TODO: Update HTML Password Input to Hide Password Visibility -->
<input id="password" type="text" placeholder="Enter your password" />
<button>Submit</button>
</form>
</body>
</html>