-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.html
63 lines (62 loc) · 2.11 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Login</title>
<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"
integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<script type="module" src="login.js"></script>
</head>
<body>
<div class="white-section">
<div class="login">
<div class="section">
<!-- <i class="fa-regular fa-envelope"></i> -->
<i class="fa-regular fa-envelope"></i>
<input
type="text"
name="user_name"
placeholder="Enter Email Address"
class="mail"
/>
</div>
<br />
<div class="section">
<i class="fa-solid fa-lock"></i>
<input
type="password"
name="password"
placeholder="Password"
class="password"
/>
</div>
<p class="login-link">
<button id="loginBtn" class="login-button">
Login
</button>
</p>
<div class="login1">
<h4>
-----Login with-----
</h4>
<div class="images">
<i class="fa-brands fa-google" style="font-size: 1.8em;"></i>
<i class="fa-brands fa-facebook" style="font-size: 1.8em;"></i>
<i class="fa-brands fa-instagram" style="font-size: 1.8em;"></i>
</div>
</div>
<p class="register-link">
Don't have an account? <a href="register.html" >Sign up</a>
</p>
</div>
<div class="content">
</div>
</div>
</body>
</html>