-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregistration.html
53 lines (51 loc) · 1.88 KB
/
registration.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
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Registration, a Coding Dojo assignment</title>
</head>
<body>
<form>
<h1>My Registration Form</h1>
<label for="first_name">First Name:</label>
<input type="text" id="first_name" name="first_name">
<br>
<label for="last_name">Last Name:</label>
<input type="text" id="last_name" name="last_name">
<br>
<label for="email">Email:</label>
<input type="text" id="email" name="email">
<br>
<label for="password">Password:</label>
<input type="password" id="password" name="password">
<br>
<label for="pw_confirm">PW Confirm:</label>
<input type="password" id="pw_confirm" name="password_confirmation">
<br>
<label for="birthday">Birthday:</label>
<input type="date" id="birthday" name="birthday">
<br>
<label for="male">Male</label>
<input type="radio" id="male" name="gender" value="male">
<label for="female">Female</label>
<input type="radio" id="female" name="gender" value="female">
<label for="other">Other</label>
<input type="radio" id="other" name="gender" value="other">
<br>
<p>A short description about yourself:</p>
<textarea name="description" cols=50></textarea>
<br>
<p>Favorite Language:
<select name="language" id="language">
<option value="JavaScript">JavaScript</option>
<option value="Python">Python</option>
<option value="C++">"C++</option>
<option value="Rust">Rust</option>
</select>
</p>
<br>
<input type="submit" value="Submit">
</form>
</body>
</html>