-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (44 loc) · 1.66 KB
/
index.html
File metadata and controls
44 lines (44 loc) · 1.66 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
<!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>Signup Page</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="outer-box">
<div class="inner-box">
<header class="signup-header">
<h1>Signup Page</h1>
<p>It only takes 30 seconds</p>
</header>
<main class="signup-body">
<form action="#">
<p>
<label for="fullname">Your Name</label>
<input type="text" id="fullname" placeholder="Adarsh gupta" required>
</p>
<p>
<label for="email">Your Email</label>
<input type="email" id="email" placeholder="adgupta183@gmail.com" required>
</p>
<p>
<label for="password">Your password</label>
<input type="text" id="password" placeholder="8 character password" required>
</p>
<p>
<input type="submit" id="submit" value="Create Account">
</p>
</form>
</main>
<footer class="signup-footer">
<p>Already have an account? <a href="#">Login</a> </p>
</footer>
</div>
<div class="circlec1"></div>
<div class="circlec2"></div>
</div>
</body>
</html>