-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
43 lines (36 loc) · 1.62 KB
/
forms.html
File metadata and controls
43 lines (36 loc) · 1.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Register With Us</title>
</head>
<body>
<form method="POST" action="https://request-inspector.glitch.me/">
<label for="username">Username</label>
<input id="username" name="username" type="text">
<br>
<label for="password">Password</label>
<input id="password" name="password" type="password">
<br>
<label for="Bio">Biography:</label><br>
<textarea id="Bio" rows="4" cols="50" placeholder="Please Tell us about you..."></textarea>
<br>
<input type="radio" id="billboard" name="How_You_Heard" value="billBoard">
<label for="billboard">Billboard</label><br>
<input type="radio" id="radio_advertisement" name="How_You_Heard" value="radio_advertisement">
<label for="radio_advertisement">Radio Advertisement</label><br>
<input type="radio" id="internet_advertisement" name="How_You_Heard" value="internet_advertisement">
<label for="internet_advertisement">Internet Advertisement</label><br>
<input type="radio" id="other" name="How_You_Heard" value="other">
<label for="other">Other</label><br>
<label for="webBrowsers">What browser are you using?</label>
<select name="webBrowsers" id="webBrowsers">
<option value="chrome">Chrome</option>
<option value="fireFox">FireFox</option>
<option value="safari">Safari</option>
<option value="eww">Internet Explorer</option>
</select><br>
<button type="submit">Welcome to Viridian!!</button>
</form>
</body>
</html>