-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
56 lines (54 loc) · 1.79 KB
/
forms.html
File metadata and controls
56 lines (54 loc) · 1.79 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Register With Us</title>
</head>
<body>
<h1>Veridian Dynamics Registration</h1>
<hr>
<section>
<br>
<form method="POST" action="https://request-inspector.glitch.me/">
<label for="username">Username:</label>
<input id="username" name="username" type="text" placeholder="please enter username">
<br>
<label for="password">Password:</label>
<input id="password" name="password" type="password" placeholder="please enter password">
<br><br>
<label for="bio"> Tell me about yourself:</label>
<br>
<textarea name="bio" id="bio" cols="40" rows="10"></textarea>
<br>
</form>
</section>
<section>
<br>
<hr>
<h3>How did you hear about us?</h3>
<input type="radio" name="radioQuestion" id="answer1" value="billboard"><label for="answer1">Billboard</label>
<br>
<input type="radio" name="radioQuestion" id="answer2" value="radio"><label for="answer2">Radio Advertisement</label>
<br>
<input type="radio" name="radioQuestion" id="answer3" value="internet"><label for="answer3">Internet
Advertisement</label>
<br>
<input type="radio" name="radioQuestion" id="answer4" value="other"><label for="answer4">Other</label>
<br>
</section>
<section>
<br>
<hr>
<label for="select"><h3>What web browser are you using?</h3></label>
<select name="web browser" id="select">
<option value="firefox">Mozilla Firefox</option>
<option value="chrome">Google Chrome</option>
<option value="safari">Mac OSX Safari</option>
<option value="brave">Mozilla Brave</option>
<option value="edge">Microsoft Edge</option>
</select>
<br><br>
<input type="submit">
</section>
</body>
</html>