-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
50 lines (43 loc) · 1.79 KB
/
forms.html
File metadata and controls
50 lines (43 loc) · 1.79 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Register With Us</title>
</head>
<body>
<!--<form action="https://www.elformo.com/forms/15f7b2b1-e5b0-438f-9f27-2bd83d68359a" method="post" accept-charset="UTF-8">-->
<h1>Registration page</h1>
<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="body-text">Tell me about yourself</label><br>
<textarea id="body-text" name="bio" cols="30" rows="10"></textarea>
<br>
<h3>How did you hear about us?</h3>
<label for="billboard">billboard</label>
<input id="billboard" name="multi-choice" value="billboard" type="radio">
<label for="radio">radio advertisement</label>
<input id="radio" name="multi-choice" value="radio advertisement" type="radio">
<label for="internet">internet advertisement</label>
<input id="internet" name="multi-choice" value="internet advertisement" type="radio">
<label for="other">other</label>
<input id="other" name="multi-choice" value="other" type="radio">
<br>
<h3>
<label for="web-browser">What web browser are you using?</label>
</h3>
<select id="web-browser" name="web-browser">
<option value="IE">Internet Explorer</option>
<option value="Chrome">Google Chrome</option>
<option value="Safari">Safari</option>
<option value="Mozilla">Mozilla Firefox</option>
</select>
<br>
<button type="submit">submit</button>
</form>
</body>
</html>