-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
47 lines (47 loc) · 1.69 KB
/
Copy pathsignup.html
File metadata and controls
47 lines (47 loc) · 1.69 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
<!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="styles.css">
<title>Sign Up</title>
<style>
body, html {
height: 100%;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
}
.container {
font-size: 40px;
text-align: center;
display: flex;
flex-direction: column;
text-align: center;
justify-content: center;
padding-bottom: 100px;
}
</style>
</head>
<body>
<div class="container">
<h2>Sign Up!</h2>
<form onsubmit="return validateSignUp()">
<input type="text" id="fullName" name="fullName" placeholder="Full Name" required>
<input type="email" id="email" name="email" placeholder="Email" required>
<input type="password" id="password" name="password" placeholder="Password" required>
<input type="password" id="confirmPassword" name="confirmPassword" placeholder="Confirm Password" required>
<input type="number" id="age" name="age" placeholder="Age" required>
<select id="gender" name="gender" required>
<option value="">Gender</option>
<option value="male">Male</option>
<option value="female">Female</option>
</select>
<textarea id="address" name="address" placeholder="Address" required></textarea>
<input type="submit" value="Sign Up">
</form>
</div>
<script src="scripts.js"></script>
</body>
</html>