-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
93 lines (74 loc) · 2.7 KB
/
forms.html
File metadata and controls
93 lines (74 loc) · 2.7 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>forms_html</title>
</head>
<body>
<main>
<header>
<h2>Register With Us</h2>
</header>
<section>
<form method="POST" action="https://request-inspector.glitch.me/">
<!-- <!–elformo action–> <form action="https://www.elformo.com/forms/c87e937a-a14e-4fc6-864a-638d45e4764d" method="post" accept-charset="UTF-8">-->
<div>
<label for="email">Email:</label>
<br>
<input id="email" name="email" type="text" placeholder="Enter your email">
<!-- <!– elformo email input–><input id="email" name="email" type="email" />-->
</div>
<div>
<label for="password">Password</label>
<br>
<input id="password" name="password" type="password" placeholder="Enter your Password">
</div>
<br>
<label>Tell Us About Yourself. </label>
<div>
<textarea id="bio" name="bio" rows=10 cols="45"></textarea>
<!--elformo text area-->
<!-- <textarea id="comment" name="comment"></textarea>-->
<br>
</div>
<div>
<h4>How Did You Hear About Us</h4>
<label>
<input type="checkbox" name="q1" value="billboard">
Billboard.
</label><br>
<label>
<input type="checkbox" name="q1" value="radio">
Radio Advertisement.
</label><br>
<label>
<input type="checkbox" name="q1" value="internet">
Internet Advertisement.
</label><br>
<label>
<input type="checkbox" name="q1" value="other">
Other.
</label>
<br>
</div>
<br>
<div>
<label for="browser">Which browser are you using? </label>
<select id="browser" name="browser" >
<option value=""></option>
<option value="chrome">Chrome</option>
<option value="firefox">Firefox</option>
<option value="safari">Safari</option>
</select>
</div>
<div>
<br>
<button type="submit">Register</button>
</div>
<!-- elformo submit button <input id="submit" name="submit" type="Submit" />-->
<!-- </form>-->
</form>
</section>
</main>
</body>
</html>