-
Notifications
You must be signed in to change notification settings - Fork 312
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (28 loc) · 1.05 KB
/
index.html
File metadata and controls
33 lines (28 loc) · 1.05 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
33
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>JobSimulator.dev</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<form>
<!-- todo: Fix Logo Rendering Issue-->
<img src="logo.svg" id="logo"/>
<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="email" placeholder="Enter your email" />
<label for="password">Password</label>
<!-- TODO: Update HTML Password Input to Hide Password Visibility -->
<input id="password" type="password" placeholder="Enter your password" />
<div class="checkbox-container" span id="show-password">
<input type="checkbox" id="show-password" />
<label for="show-password">Show Password</label>
</div>
<button id="submit-button">Submit</button>
</form>
<script src="script.js"></script>
</body>
</html>