-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsignupin.html
38 lines (33 loc) · 1011 Bytes
/
signupin.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Sign Up</title>
</head>
<body>
<div class="full-screen-container">
<div class="form-container">
<h1 id="form-title">Sign Up</h1>
<form class="form">
<div class="form-field" id="name-field">
<input type="text" name="name" id="name" placeholder="Name">
</div>
<div class="form-field">
<input type="email" name="email" id="email" placeholder="Email">
</div>
<div class="form-field">
<input type="password" name="password" id="password" placeholder="Password">
</div>
<p>Lost password? <a href="#">Click here!</a></p>
<div class="btn-field">
<button type="button" id="signup-btn">Sign Up</button>
<button type="button" id="signin-btn" class="disabled">Sign In</button>
</div>
</form>
</div>
</div>
<script src="script.js"></script>
</body>
</html>