-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (25 loc) · 1.03 KB
/
Copy pathindex.html
File metadata and controls
33 lines (25 loc) · 1.03 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 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="./style.css">
</head>
<body>
<div class="hero" id="hero">
<h2 id="header"> LOGIN - FORM</h2>
<h5>Do make sure to fill in all details correctly</h5><br>
<form id="myForm">
<label for="email">E - MAIL:</label>
<input type="email" name="email" id="email" placeholder="@gmail.com" required><br><br>
<label for="username">USERNAME:</label>
<input type="username" name="username" id="username" placeholder="JohnDOE" required><br><br>
<label for="password">PASSWORD:</label>
<input type="password" name="password" id="password" placeholder="password" required><br><br>
</form>
<button onclick="proceed()" id="myBtn">PROCEED➡️</button>
</div>
</body>
<script src="./script.js"></script>
</html>