-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
43 lines (41 loc) · 1.36 KB
/
Copy pathforms.html
File metadata and controls
43 lines (41 loc) · 1.36 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">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Register With Us</title>
</head>
<body>
<form method="POST" action="https://request-inspector.glitch.me/"></form>
<form>
<label for="Username">Username</label>
<input id="Username" name="Username" type="text">
<br>
<label for="Password">Password</label>
<input id="Password" name="Password" type="text">
<br>
<input type="submit">
</form>
<h4>Tell me about yourself!</h4>
<form>
<textarea name="Bio"></textarea>
<br>
<input type="submit">
</form>
<br>
<h3>How did you hear about us?</h3>
Billboard <input type="radio" name="How did you hear about us?" value="billboard"><br>
radio advertisement <input type="radio" name="How did you hear about us?" value="radio advertisement"><br>
internet advertisement <input type="radio" name="How did you hear about us?" value="internet advertisement"><br>
other <input type="radio" name="How did you hear about us?" value="other"><br>
<br>
<h3>What Browser are you using?</h3>
<select name="Browser">
<option value="Google">Google</option>
<option value="FireFox">FireFox</option>
<option value="Safrai">Safrai</option>
</select>
</body>
</html>