-
Notifications
You must be signed in to change notification settings - Fork 0
/
001.html
36 lines (35 loc) · 1.27 KB
/
001.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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>001.html</title>
<link rel="stylesheet" href="./css/001.css">
</head>
<body>
<div class="wrapper">
<form action="">
<h2>login</h2>
<div class="input-box">
<span class="icon"><ion-icon name="person"></ion-icon></span>
<input type="text" placeholder="Username" required >
</div>
<div class="input-box">
<span class="icon"><ion-icon name="lock-closed"></ion-icon></span>
<input type="password" placeholder="passworde" required >
</div>
<div class="forgot-pass">
<a href="#">Forgot Password?</a>
</div>
<button type="submit">login</button>
<div class="register-link">
<p>Don't have an account? <a href="#">
Register
</a></p>
</div>
</form>
</div>
<script type="module" src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"></script>
</body>
</html>