-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (48 loc) · 1.55 KB
/
index.html
File metadata and controls
48 lines (48 loc) · 1.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- style link -->
<link rel="stylesheet" href="style.css">
<!-- icon links -->
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/boxicons@latest/css/boxicons.min.css">
<title>Login Form</title>
</head>
<body>
<section>
<div class="form_container">
<div class="form_grid1">
<h1>
welcome back!
</h1>
<p>
Enter your personal details to use all of site features
</p>
<button>Sign in</button>
</div>
<div class="form_grid2">
<h2>
Create Account
</h2>
<div class="icon">
<i class='bx bxl-google'></i>
<i class='bx bxl-facebook'></i>
<i class='bx bxl-github'></i>
<i class='bx bxl-linkedin-square'></i>
</div>
<p>
or use your email for registration
</p>
<form>
<input type="text" name="name" placeholder="Name">
<input type="email" name="email" placeholder="Email">
<input type="password" name="password" placeholder="Password">
</form>
<button>sign up</button>
</div>
</div>
</section>
</body>
</html>