-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (29 loc) · 1.19 KB
/
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
<!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="style.css">
<title>Simple Login Form | Flickaru</title>
</head>
<body>
<nav>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li> >> <a href="#">Login</a></li>
</nav>
<br>
<div class="wrapper">
<h3>Welcome back, Flickaru</h3>
<ion-icon name="mail-outline"></ion-icon> Email<input type="mail"></input>
<br>
<ion-icon name="lock-closed-outline"></ion-icon> Password <input type="pass"></input>
<br> <button class="login">Login</button>
<p>Don't have an account? <a href="#">Create one now</a></p>
<p>Forgot password? <a href="#">Reset it now</a></p>
</div>
</body>
<footer>Copyright © Business 2024 | design made by <a href="https://github.com/flickaru">Flickaru</a> </footer>
<script type="module" src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.js"></script>
</html>