-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
67 lines (63 loc) · 1.93 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
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
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="This is a modern Glassy blurred background login form."
/>
<meta
property="og:title"
content="Glassy blurred background login form design - CodeWithAlamin"
/>
<meta
property="og:description"
content="This is a modern Glassy blurred background login form design coded by Alamin"
/>
<meta
property="og:image"
content="https://raw.githubusercontent.com/CodeWithAlamin/Glassy-login-form/main/screenshot/Glassy%20Login%20form%20screenshot.png"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;800&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/reset.css" />
<link rel="stylesheet" href="css/styles.css" />
<title>Blurred Glassy Login form</title>
</head>
<body>
<main>
<div class="top-container">
<form action="">
<h1>Sign In</h1>
<div class="input-wrapper">
<input
class="input"
id="username"
type="text"
autocomplete="off"
placeholder=""
required
/>
<label class="label" for="username">Username</label>
</div>
<div class="input-wrapper">
<input
class="input"
id="password"
type="password"
placeholder=""
required
/>
<label class="label" for="password">Password</label>
</div>
<button type="submit">Sign In</button>
</form>
</div>
</main>
</body>
</html>