-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
59 lines (49 loc) · 1.72 KB
/
Copy pathforms.html
File metadata and controls
59 lines (49 loc) · 1.72 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
57
58
59
<!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>
<header>
<h1>Register With Us!</h1>
</header>
<form method="POST" action="https://request-inspector.glitch.me/">
<label for="email">Email: </label>
<input id="email" name="email" type="email">
<br>
<label for="password">Password: </label>
<input id="password" name="password" type="password">
<br>
<br>
<label for="Bio">Bio:</label>
<br>
<textarea name="Bio" rows= "10" cols="40" id="Bio" placeholder="Give us a short description of yourself."></textarea>
<p>How did you hear about us?</p>
<label for="Billboard">Billboard</label>
<input type="radio" name="Billboard" id="Billboard" value="Billboard">
<label for="Radio Advertisement">Radio Advertisement</label>
<input type="radio" name="Radio Advertisement" id="Radio Advertisement" value="Radio Advertisement">
<label for="Internet Advertisement">Internet Advertisement</label>
<input type="radio" name="Internet Advertisement" id="Internet Advertisement" value="Internet Advertisement">
<label for="Other">Other</label>
<input type="radio" name="Other" id="Other" value="Other">
<br>
<br>
<p>What web browser are you using?</p>
<label for="Browser">Browser: </label>
<select name="Browser" id="Browser">
<option>Chrome</option>
<option>Edge</option>
<option>FireFox</option>
<option>Safari</option>
</select>
<br>
<br>
<button>Register</button>
</form>
</body>
</html>