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<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login or Signup - Equalify</title>
</head>
<body>
<main>
<h1>Equalify</h1>
<div aria-live="assertive">Login or signup to create an audit.</div>
<article>
<h2>Login or Signup</h2>
<form action="3-audit_builder-add_pages.html" method="get">
<label for="email">Email Address:</label>
<input id="email" type="email" required>
<label for="password">Password:</label>
<input id="password" type="password" required>
<button>Submit</button>
</form>
</article>
</main>
</body>
</html>