-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
87 lines (74 loc) · 2.58 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Alien Abduction Order Form</title>
<link href="css/forms.css" rel="stylesheet">
</head>
<body>
<div class="wrapper">
<section>
<h1>Alien Abduction Order Form</h1>
<p>Fill out the form below to place an order for an alien abduction by one of our fine UFOs.</p>
<form
action="https://e3vwdl4bpd.execute-api.us-west-2.amazonaws.com/default/API2SES" method="POST">
<input type="hidden" name="send_to" value="umehsophia2@gmail.com">
<fieldset>
<legend>Your contact information</legend>
<label for="blah">Your name </label>
<input type="text" id="blah" name="name">
<label for="yes">Phone number</label>
<input type="tel" id="yes" name="phone" placeholder="Start with your country code">
<label for="boom">Email</label>
<input type="text" id="boom" name="email">
</fieldset>
<fieldset>
<legend>About your abduction </legend>
<label for="blur">Requested date</label>
<input type="date" id="blur" name="date">
<label for="soup">How many people would you like abducted?</label>
<input type="number" id="soup" name="qty" min="1" max="10">
<p>What type of UFO do you prefer?</p>
<label>
<input type="radio" name="ufotype" value="classic" checked>Classic oval UFO
</label>
<label>
<input type="radio" name="ufotype" value="starwars">Star Wars-style Imperial cruiser
</label>
<label>
<input type="radio" name="ufotype" value="galactica">Battlestar Galactica-style Viper
</label>
<label>
<input type="radio" name="ufotype" value="startrek">Borg-style cube
</label>
<label for="abtype">What type of abduction experience do you want?</label>
<select id="abtype" name="abtype">
<option value="tour">Tour of the solar system</option>
<option value="dinner">Alien dinner and discussion</option>
<option value="dance">Alien dance lessons</option>
<option selected>Select one</option>
<option value="whales">Whale watching</option>
</select>
<label for="comments">Special requests:</label>
<textarea id="comments" name="comments" placeholder="anything extra?"></textarea>
<label>
<input type="checkbox" value="subscribe" name="subscribe" checked>Add me to your email list
</label>
</fieldset>
<button
type="submit">Place Order</button>
</form>
</section>
<aside>
<h3>Our Location</h3>
<address>
Frontend Masters ·
60 South 6th Street ·
Suite 3625 ·
Minneapolis, MN 55402
</address>
</aside>
</div>
<script src="js/forms.js"></script>
</body>
</html>