-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest-form.html
More file actions
80 lines (60 loc) · 2.94 KB
/
test-form.html
File metadata and controls
80 lines (60 loc) · 2.94 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Test Form</title>
</head>
<body>
<main>
<!-- <form method="post" action="https://request-inspector.glitch.me/">-->
<!-- <label for="username">Username</label>-->
<!-- <input id="username" name="username" type="text" placeholder="Enter your username" value="">-->
<!-- <br>-->
<!-- <label for="age">User Age</label>-->
<!-- <input id="age" type="number" name="age" placeholder="Enter age">-->
<!-- <br>-->
<!-- <button>Submit</button>-->
<!-- </form>-->
<!-- <br>-->
<form method="post" action="https://request-inspector.glitch.me/">
<div><strong>Your name</strong></div>
<label for="firstName">First Name</label>
<input id="firstName" name="firstName" type="text">
<label for="lastName">Last Name</label>
<input id="lastName" name="lastName" type="text">
<br>
<br>
<label for="businessName">Business Name</label><br>
<input id="businessName" name="businessName" type="text">
<br>
<br>
<label for="email">E-mail</label><br>
<input id="email" name="email" type="text">
<br>
<br>
<label for="phoneNumber">Phone Number</label><br>
<input id="phoneNumber" name="phoneNumber" type="tel" placeholder="(000)000-0000">
<br>
<br>
<label for="location">City where you are located</label><br>
<input id="location" name="location" type="text">
<br>
<br>
<label for="products">List the product(s) you will be selling</label><br>
<textarea id="products" name="products"></textarea>
<br>
<br>
<label for="reqs">Special Requests</label><br>
<input id="reqs" name="reqs" type="text">
<br>
<br>
<p><strong>Consent to Photograph /Videotape / Interview Individuals</strong></p>
<br>
<p><em>Please read, date and provide your signature on the next pages</em></p>
<br>
<p><strong>Terms & Conditions</strong></p>
<p>I hereby agree and give my permission for Rise Asset Development and/or partners to record, film,photograph, audiotape or videotape myself (hereinafter collectively referred to as “Works”) and to display, publish or distribute these Works for the purpose of publishing, posting on the Rise Asset Development website and posting on social media sites. I hereby waive any right to approve the use of these Works now or in the future, whether the use is known to me or unknown, and I waive any right to any royalties related to the use of these Works. I understand that the Works may appear in electronic form on the internet or in other publications outside of the Rise Asset Development’s control. I agree that I will not hold the Rise Asset Development responsible for any harm that may arise from such unauthorized reproduction.</p>
</form>
</main>
</body>
</html>