-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (25 loc) · 919 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Login page</title>
<link rel="stylesheet" href="/asset/font-awesome-4.7.0/css/font-awesome.css">
<link rel="stylesheet" href="/assets/scss/index.css">
</head>
<body>
<section class="container">
<div class="overlay">
<div class="cover">
<input type="text" class="details" placeholder="Username"> <br>
<input type="password" id="passcode" class="details" placeholder="Password"><br>
<input type="checkbox" id="check">remember password
<button id="butty">ShowHide</button>
<br>
<input type="submit" value="LOGIN" id="submit"><br>
<span>forgot password <a href="#">clickhere</a></span>
</div>
</div>
</section>
<script src="/assets/js/index.js"></script>
</body>
</html>