-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (59 loc) · 2.97 KB
/
index.html
File metadata and controls
66 lines (59 loc) · 2.97 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
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- displays site properly based on user's device -->
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<title>Login Page with absolute positioning</title>
<!-- Google Fonts -->
<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=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet">
<!-- Stylesheets -->
<link rel="stylesheet" href="css/resets.css">
<link rel="stylesheet" href="css/layout.css">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<div class="page-wrapper justify-center align-center">
<img src="img/dots-1.svg" alt="dots1" class="absolute-image1" id="dots1">
<img src="img/dots-2.svg" alt="dots2" class="absolute-image" id="dots2">
<!-- <img src="img/times-icon.svg" alt="blackX" class="absolute-image" id="X">-->
<img src="img/wavy-lines-1.svg" alt="wavy1" class="absolute-image" id="wavy1">
<img src="img/wavy-lines-2.svg" alt="wavy2" class="absolute-image" id="wavy2">
<img src="img/footer-wave-bottom.svg" alt="wavebottom" class="absolute-image" id="wavelight">
<img src="img/footer-wave-top.svg" alt="wavetop" class="absolute-image" id="wavedark">
<!-- ADD ABSOLUTE POSITIONED IMAGES HERE -->
<div class="container login">
<div class="button-container">
<button class="close-button">X</button>
</div>
<div class="row">
<form class="column gap-20" method="POST">
<h1>Login into Your Account</h1>
<label class="input-group">
<span class="input-label">Email</span>
<input type="email" name="email" placeholder="yourname@company.com" required>
</label>
<div class="d-flex flex-column">
<label class="input-group">
<span class="input-label">Password*</span>
<input type="password" name="password" placeholder="****************" required>
</label>
<div class="d-flex align-center justify-space-between">
<label class="checkbox">
<input type="checkbox" name="remember" checked>
<span class="checkbox-label">Keep me signed in</span>
</label>
<a href="#" class="link">Forgot password?</a>
</div>
</div>
<button type="submit" name="login" class="btn btn-login">Login</button>
</form>
</div>
</div>
</div>
</body>
</html>