-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
75 lines (74 loc) · 2.74 KB
/
forms.html
File metadata and controls
75 lines (74 loc) · 2.74 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!--HTML Forms Exercise-->
<!--Pushed to GitHub on 7/23/2021-->
<!--You don't need to open a css file-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Register With Us</title>
</head>
<body>
<p>Login Form</p>
<form method="POST" action="https://request-inspector.glitch.me/">
<div>
<label for="email">Email:</label>
<input id="email" name="email" type="text" placeholder="Enter your email">
</div>
<br>
<div>
<label for="password">Password:</label>
<input id="password" name="password" type="password" placeholder="Enter your password">
</div>
<br>
<div>
<button type="submit">Submit</button>
</div>
</form>
<br>
<form method="POST" action="https://request-inspector.glitch.me/">
<p>Tell us a little bit about yourself:</p>
<textarea id="bio" rows="5" cols="40" name="bio" placeholder="Type here"></textarea>
<br>
<br>
<div>
<button type="submit">Submit</button>
</div>
</form>
<br>
<form method="POST" action="https://request-inspector.glitch.me/">
<p>How did you hear about us?</p>
<label><input type="radio" name="retention" value="billboard">Billboard</label><br>
<label><input type="radio" name="retention" value="radio adv">Radio Advertisement</label><br>
<label><input type="radio" name="retention" value="internet adv">Internet Advertisement</label><br>
<label><input type="radio" name="retention" value="other">Other</label><br><br>
<div>
<button type="submit">Submit</button>
</div>
</form>
<br>
<form method="POST" action="https://request-inspector.glitch.me/">
<label for="browser">Which web browser are you using?</label>
<select id="browser" name="browser">
<option>Chrome</option>
<option>Safari</option>
<option>Firefox</option>
<option>Internet Explorer</option>
<option>Opera</option>
<option>Kingpin</option>
<option>Microsoft Edge</option>
<option>Other</option>
</select><br><br>
<div>
<button type="submit">Submit</button>
</div>
</form>
</body>
</html>
<!--BONUS-->
<!-- I don't know where to plug this into my code.-->
<!-- <form method="POST" action="https://www.elformo.com/forms/be06e05c-3db9-4c07-b117-7bd13af5a2a3">-->
<!-- <form action="https://www.elformo.com/forms/be06e05c-3db9-4c07-b117-7bd13af5a2a3" method="post" accept-charset="UTF-8">-->
<!-- <input id="email" name="email" type="email" />-->
<!-- <textarea id="comment" name="comment"></textarea>-->
<!-- <input id="submit" name="submit" type="Submit" />-->
<!-- </form>-->