-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
49 lines (39 loc) · 1.2 KB
/
forms.html
File metadata and controls
49 lines (39 loc) · 1.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Registration Page</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>Registration Form</h1>
<form action="#" method="POST">
<p>
<label for="fullname">Enter Full Name:</label><br />
<input type="text" id="fullname" name="fullname" required>
</p>
<p>
<label for="username">Username:</label><br />
<input type="text" id="username" name="username" required>
</p>
<p>
<label for="password">Password:</label><br />
<input type="password" id="password" name="password" required><br><br>
</p>
<p>
<label for="address">Address for Correspondense:</label><br />
<textarea id="address" name="address" rows="4" cols="50" required>
</textarea><br />
</p>
<p>
<label for="category">Select the Category:</label>
<select id="category" name="category">
<option value="Premium">Premium</option>
<option value="Regular">Regular</option>
</select>
<input type="submit" value="Register">
</form>
<a href="index.html">Home</a>
</body>
</html>