-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.html
41 lines (34 loc) · 1.38 KB
/
login.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
38
39
40
41
<!DOCTYPE html>
<html>
<head>
<title>Login</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="styles.css">
<script src="script.js"></script>
</head>
<body>
<h2>Login Here</h2>
<form method="POST" action="">
<div id="login-form" class="form">
<h2>Login Here</h2>
<a href="index.html" id="closebtn" class="closebtn">×Close</a>
<input type="email" name="email" placeholder="enter email"><br>
<input type="text" id="password" name="" placeholder="enter password"><br>
<button type="submit" class="btnn"><a href="#">Login</a></button>
<p class="link">Don't have an account<br>
<a href="signup.html">Sign up </a> here</a></p>
<p class="liw">Log in with</p>
<div class="icons">
<a href="#"><ion-icon name="logo-facebook"></ion-icon></a>
<a href="#"><ion-icon name="logo-instagram"></ion-icon></a>
<a href="#"><ion-icon name="logo-twitter"></ion-icon></a>
<a href="#"><ion-icon name="logo-google"></ion-icon></a>
<a href="#"><ion-icon name="logo-skype"></ion-icon></a>
</div>
</div>
<script src="https://unpkg.com/ionicons@5.4.0/dist/ionicons.js"></script>
</form>
</body>
</html>