-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
36 lines (36 loc) · 1.46 KB
/
forms.html
File metadata and controls
36 lines (36 loc) · 1.46 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
<!DOCTYPE html>
<main lang="en">
<head>
<meta charset="UTF-8">
<title>Register With Us</title>
</head>
<main>
<form method="POST" action="https://request-inspector.glitch.me/">
<div>
<label for="email">Email:</label>
<input id="email" name="email-input" type="text" placeholder="email">
</div>
<div>
<label for="pass">Password:</label>
<input id="pass" name="password-input" type="password" placeholder="password">
</div>
<div><br>
<label for="bio">Write your bio here!</label><br>
<textarea id="bio" name="bio"></textarea><br>
</div>
<h3>How did you hear about us?</h3>
<div>
<label for="radio1">billboard</label>
<input id="radio1" name="radio1" type="radio" value="billboard"><br>
<label for="radio2">radio advertisement</label>
<input id="radio2" name="radio2" type="radio" value="radio advertisement"><br>
<label for="radio3">internet advertisement</label>
<input id="radio3" name="radio3" type="radio" value="internet advertisement"><br>
<label for="radio4">other</label>
<input id="radio4" name="radio4" type="radio" value="other"><br>
</div>
<button type="submit">submit</button>
</form>
</main>
</body>
</html>