-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (65 loc) · 2.97 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Cake Form</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet"></link>
<link href="/bin/main.css" rel="stylesheet"></link>
</head>
<body>
<main class="container">
<form role="form" id="cake-form" novalidate>
<fieldset>
<legend class="form-heading">Cake Enquiry Form</legend>
<div class="control-container">
<label class="form-label margin-bottom-2">Name:</label>
<input type="text" class="form-element form-input margin-bottom-2" name="name" autofocus placeholder="Enter Name" required />
<label class="form-label margin-bottom-2">Email:</label>
<input type="email" class="form-element form-input margin-bottom-2" name="email" placeholder="[email protected]" required />
<label class="form-label margin-bottom-2">Type of cake:</label>
<div>
<input type="checkbox" name="cake-type" value="Cupcakes" id="Cupcakes" />
<label for="Cupcakes">Cupcakes</label>
</div>
<div>
<input type="checkbox" name="cake-type" value="Cheesecakes" id="Cheesecakes" />
<label for="Cupcakes">Cheesecakes</label>
</div>
<div>
<input type="checkbox" name="cake-type" value="Butter Cakes" id="ButterCakes" />
<label for="Cupcakes">Butter Cakes</label>
</div>
<div class="margin-bottom-2">
<input type="checkbox" name="cake-type" value="Mudcakes" id="Mudcakes" />
<label for="Cupcakes">Mudcakes</label>
</div>
<label class="form-label margin-bottom-2">Celebration type:</label>
<div>
<input type="radio" name="celeb-type" value="Birthday" id="Birthday" required />
<label for="Birthday">Birthday</label>
</div>
<div>
<input type="radio" name="celeb-type" value="Wedding" id="Wedding" />
<label for="Wedding">Wedding</label>
</div>
<div>
<input type="radio" name="celeb-type" value="Corporate" id="Corporate" />
<label for="Corporate">Corporate</label>
</div>
<div class="margin-bottom-2">
<input type="radio" name="celeb-type" value="Others" id="Others" />
<label for="Others">Others</label>
</div>
<input type="text" class="form-element form-input margin-bottom-2" id="tell-us" disabled />
<label class="form-label margin-bottom-2">Tell us about your dream cake:</label>
<textarea class="form-element margin-bottom-2"></textarea>
<div>
<button class="submit-button inline" id="submit-cake" type="submit">Send away</button>
<div class="link-button inline" id="reset">Restart</div>
</div>
</div>
</fieldset>
</form>
</main>
<script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.2.0/require.min.js" data-main="/app.js"></script>
</body>
</html>