-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (36 loc) · 950 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
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./app.css" />
<title>JS-MODAL</title>
</head>
<body>
<!-- overlay -->
<div class="overlay" id="overlay">
<div class="modal">
<form>
<div class="group">
<p>Login to your account</p>
<p>x</p>
</div>
<input type="text" placeholder="Username" />
<input type="password" placeholder="Password" />
<div class="group">
<a href="#">New here? Sign up!</a>
<button>Login</button>
</div>
</form>
</div>
</div>
<!-- nav -->
<nav>
<div class="wrapper">
<h1>JS<span>MODAL</span></h1>
<button id="login">Login</button>
</div>
</nav>
<script src="./app.js"></script>
</body>
</html>