-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
90 lines (75 loc) · 2.68 KB
/
index.html
File metadata and controls
90 lines (75 loc) · 2.68 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
<!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="icugideon@gmail.com">
<fieldset>
<legend>Your contact information</legend>
<label for="name">Your name </label>
<input type="text" id="name" name="name" placeholder="John Doe">
<label for="phone" >Phone number</label>
<input type="tel" id="phone" name="tel" placeholder="+234 ">
<label for="email">Email</label>
<input type="email" id="email" name="email" placeholder="john@doe.com">
</fieldset>
<fieldset>
<legend>About your abduction </legend>
<label for="date">Requested date </label>
<input type="date" id="date" name="date">
<label for="qty">How many people would you like abducted?</label>
<input type="number" id="qty" name="qty" min="0" max="12">
What type of UFO do you prefer?
<label>
<input type="radio" name="ufotype" value="classic">Classic oval UFOs
</label>
<label>
<input type="radio" name="ufotype" value="starwars">Star Wars-style Imperial cruiser
</label>
<label>
<input type="radio" name="ufotype" value="battlestar">Battlestar Galactica-style Viper
</label>
<label>
<input type="radio" name="ufotype" value="borgstye"
checked >Borg-style cube
</label>
<label for="abtype">
What type of abduction experience do you want?
</label>
<select name="abtype" id="abtype">
<option selected> select one... </option>
<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 value="whale">Whale watching</Option>
</select>
<label>Special requests:</label>
<textarea name="request" id="request" cols="30" rows="10" placeholder="Tell me everything..."></textarea>
<label for="email-list">
<input type="checkbox" name="email-list" id="email-list" checked> Add me to your email list
</label>
</fieldset>
<button type="submit">Order your abduction experience</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>