-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
45 lines (41 loc) · 1.49 KB
/
signup.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
39
40
41
42
43
44
45
<!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>
<style>
form {
border: 2px solid black;
display: flex;
flex-direction: column;
text-align: center;
justify-content: center;
align-items: center;
width: 500px;
padding: 23px;
border-radius: 5px;
}
.input {
margin: 4px;
}
</style>
</head>
<body>
<form id="register1" class="input-rg">
<h1>Sign up</h1>
<input type="text" class="input" placeholder="Enter first name" required>
<input type="text" class="input" placeholder="Enter last name" required>
<input type="text" class="input" id="username" placeholder="Enter an username" required>
<input type="email" class="input" placeholder="Enter Email-id" required>
<input type="password" class="input" id="password" placeholder="Enter password" required>
<input type="password" class="input" placeholder="Confirm password" required>
<div class="checkbox">
<input type="checkbox" class=><span>I agree to all <a href="#">terms & conditions</a></span>
</div>
<button type="submit" class="submit" id="submit">Register</button>
</form>
<script src="signup.js"></script>
</body>
</html>