-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
47 lines (40 loc) · 1.8 KB
/
Copy pathforms.html
File metadata and controls
47 lines (40 loc) · 1.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Register With Us</title>
</head>
<body>
<h1 id="top" class="fancy-header" style="color:red">Register With Us</h1>
<form action="https://request-inspector.glitch.me" method="POST">
<label for="email">Email:</label>
<input type="email" name="email" id="email" placeholder="your email address">
<p> </p>
<label for="password">Password:</label>
<input type="password" name="password" id="password" placeholder="password here">
<p></p>
<label for="bio">Bio:</label><br>
<textarea name="bio" id="bio" cols="30" rows="10" placeholder="Tell us about yourself"></textarea><br>
<h3>How did you hear about us?</h3>
<label for="radio"></label>
<input type="radio" id="radio" name="hearOfUs" value="radio advertisement"> radio<br>
<label for="internet"></label>
<input type="radio" id="internet" name="hearOfUs" value="internet advertisement"> internet<br>
<label for="billboard"></label>
<input type="radio" id="billboard" name="hearOfUs" value="billboard">billboard<br>
<label for="other"></label>
<input type="radio" id="other" name="hearOfUs" value="other">other<br>
<h3>What browser do you use?</h3>
<label for="browserType"></label>
<select name="browserType" id="browserType">
<option value=""></option>
<option value="FireFox">FireFox</option>
<option value="Safari">Safari</option>
<option value="Chrome">Chrome</option>
<option value="Internet Explorer"disabled>Internet Explorer</option>
</select>
<p></p>
<input type="submit" value="Register Now" >
</form>
</body>
</html>