-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (32 loc) · 861 Bytes
/
index.html
File metadata and controls
35 lines (32 loc) · 861 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Simple Login Form Design | Rustcode</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<form class="login-form">
<div class="heading-container">
<h2>Welcome back!</h2>
<p>Please enter your login details</p>
</div>
<div class="group login-input">
<input type="email" placeholder="Email" required>
</div>
<div class="group login-input">
<input type="password" placeholder="Password" required>
</div>
<div class="group form-link">
<span>
<input type="checkbox">Remember Me
</span>
<a href="#">Forgot Password</a>
</div>
<div class="group">
<button class="btn" type="submit">LOGIN</button>
</div>
</form>
</div>
</body>
</html>