-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (53 loc) · 1.99 KB
/
index.html
File metadata and controls
54 lines (53 loc) · 1.99 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Glassmorphism Login Form | snake coding</title>
<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"
/>
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;600&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div class="inFormBackground">
<div class="circle"></div>
<div class="circle"></div>
<div class="inLoginForm">
<form onsubmit="return false">
<div class="title"><h3>Login Here</h3></div>
<div class="inputGroup">
<label for="email">Email</label>
<input
type="email"
placeholder="Enter Email"
id="email"
/>
</div>
<div class="inputGroup">
<label for="password">Password</label>
<input
type="email"
placeholder="Enter Password"
id="password"
/>
</div>
<button class="submitForm">Log In</button>
<div class="social">
<div class="go"><i class="fab fa-google"></i></div>
<div class="fb"><i class="fab fa-facebook"></i></div>
<div class="tw"><i class="fab fa-twitter"></i></div>
</div>
</form>
</div>
</div>
</body>
</html>
</body>
</html>