-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRegistrationForm
More file actions
36 lines (36 loc) · 1.38 KB
/
RegistrationForm
File metadata and controls
36 lines (36 loc) · 1.38 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
<!DOCTYPE html>
<html>
<head>
<title>
My Registration Form
</title>
</head>
<body>
<h1>My Registration Form</h1>
<form action="example.php" method="post"
<label for="first_name">First Name:</label>
<input type="text" id="first_name" name="first_name">
<label for="last_name">Last Name:</label>
<input type="text" id="last_name" name="last_name">
<label for="email">Email:</label>
<input type="text" id="email" name="email">
<label for="password">Password:</label>
<input type="password" id="password" name="password">
<label for="pwconfirm">PW Confirm:</label>
<input type="password" id="pwconfirm" name="pwconfirm">
<label for="birthday">Birthday:</label>
<input type="date" name="bday">
<input type="radio" id="male" name="gender" value="male">
<input type="radio" id="female"name="gender" value="female">
<input type="radio" id="other"name="gender" value="other">
<p>A short description about yourself:</p>
<textarea name="description"></textarea>
<select name="Favorite language">
<option value="javascript">Javascript</option>
<option value="python">Python</option>
<option value="php">Php</option>
<option value="java">Java</option>
</select>
</form>
</body>
</html>