-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
57 lines (51 loc) · 2.02 KB
/
forms.html
File metadata and controls
57 lines (51 loc) · 2.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Register With Us</title>
</head>
<body>
<h1>Veridian Dynamics Registration Form</h1>
<form method="POST" action="https://hookb.in/QJGYoeMMW7s8mNzzmq7m">
<label for="email_registration">Username</label>
<input id="email_registration" name="email_registration" placeholder="exampleeamail@codeup.com">
<br><br>
<label for="password">Password</label>
<input id="password" name="password" type="password">
<br><br>
<label for="bio">Bio</label>
<textarea name="bio" id="bio" placeholder="Tell us about yourself "></textarea>
<br>
<br>
<section>
<h5>How did you hear about Us?</h5>
<label for="Billboard">Billboard</label>
<input type="radio" id="Billboard" name="Hear-1" value="Billboard">
<br>
<label for="Radio advertisement">Radio advertisement</label>
<input type="radio" id="Radio advertisement" name="Hear-1" value="Radio advertisement">
<br>
<label for="Internet advertisement">Internet advertisement</label>
<input type="radio" id="Internet advertisement" name="Hear-1" value="Internet advertisement">
<br>
<label for="Other">Other</label>
<input type="radio" id="Other" name="Hear-1" value="Other">
</section>
<br>
<section>
<label for="webBrowser-select">What web browser are you using?></label>
<select name=webBrowsers" id="webBrowser-select">
<option value="" disabled selected>--Please choose an option--</option>
<option value="google chrome">Google Chrome</option>
<option value="safari">Safari</option>
<option value="firefox">Firefox</option>
<option value="internet Explorer">Internet Explorer</option>
<option value="other">Other</option>
</select>
</section>
<br>
<!--<input type="Submit" value=Register">-->
<button type="submit">Register</button>
</form>
</body>
</html>