-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
81 lines (77 loc) · 3.24 KB
/
signup.html
File metadata and controls
81 lines (77 loc) · 3.24 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign Up</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="container">
<h1>Interior Design Blog</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#" id="profile-link">Profile</a></li>
<li><a href="#" id="explore-link">Explore</a></li>
</ul>
</nav>
</div>
</header>
<section class="signup-form">
<div class="container">
<h2>Sign Up</h2>
<form id="signup-form" action="signup.php" method="post">
<div class="form-group">
<label for="username">Username:</label>
<input type="text" id="username" name="username" required>
</div>
<div class="form-group">
<label for="role">Role:</label>
<select id="role" name="role" required>
<option value="designer">Designer</option>
<option value="architect">Architect</option>
<option value="civil engineer">Civil Engineer</option>
<option value="other">Other</option>
</select>
</div>
<div class="form-group">
<label for="gender">Gender:</label>
<select id="gender" name="gender" required>
<option value="male">Male</option>
<option value="female">Female</option>
<option value="other">Other</option>
</select>
</div>
<div class="form-group">
<label for="age">Age:</label>
<input type="number" id="age" name="age" required>
</div>
<div class="form-group">
<label for="qualification">Qualification (optional):</label>
<input type="text" id="qualification" name="qualification">
</div>
<div class="form-group">
<label for="password">Password:</label>
<input type="password" id="password" name="password" required>
</div>
<div class="form-group">
<label for="confirm_password">Confirm Password:</label>
<input type="password" id="confirm_password" name="confirm_password" required>
</div>
<button type="submit" name="signup">Sign Up</button>
</form>
<p>Already have an account? <a href="login.html">Log in</a></p>
</div>
</section>
<footer>
<div class="container">
<p>© 2024 Interior Design Blog. All rights reserved.</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>