-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (28 loc) · 915 Bytes
/
index.html
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
34
35
36
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Authentication App</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h2 id="form-title">Login</h2>
<img src="login.png" alt="" height="250px">
<div>
<label for="username">Username</label>
<input id="username" type="text" required>
</div>
<div>
<label for="password">Password</label>
<input id="password" type="password" required>
</div>
<div id="confirm-password-container" style="display: none;">
<label for="confirm-password">Confirm Password</label>
<input id="confirm-password" type="password">
</div>
<button id="submit" onclick="handleSubmit()">Login</button>
<p>Don't have an account? <span id="toggle-link" onclick="toggleAuth()">Sign Up</span></p>
<script src="script.js"></script>
</body>
</html>