-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrequest.html
93 lines (91 loc) · 3.97 KB
/
request.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
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="request.css">
<title>Request A Delivery</title>
</head>
<body>
<header class="page-header">
<div class="logo">
<a href="./index.html"><img src="./img/Logo.PNG" alt="Logo"></a>
</div>
<nav class="nav">
<ul>
<a href="./index.html"><li>Home</li></a>
<a href="./about.html"><li>Help</li></a>
</ul>
</nav>
</header>
<div class="clear"></div>
<div class="container">
<section class="request-section">
<div class="request-head">
<h3>Submit your request</h3>
<p>Please fill out the form below:</p>
</div>
<div class="request-form">
<form action="/" method="POST">
<div class="request-email">
<div class="inputf">
<label for="email">Address</label> <br>
<input type="email" name="email" id="email">
</div>
</div>
<div class="sradio">
<div class="style-radio">
<p>Classic</p>
<p>This is a classic treatment</p>
<p>$3</p>
<input type="radio" id="classic_choice" name='choice' value="3.00">
</div>
<div class="style-radio">
<p>Premium</p>
<p>Pinky's Up</p>
<p>$5</p>
<input type="radio" id="premium_choice" name='choice' value="5.00">
</div>
<div class="style-radio">
<p>Royal</p>
<p>Your food is served on a platter of gold literally</p>
<p>$10</p>
<input type="radio" id="royal_choice" name='choice' value="10.00">
</div>
</div>
<div class="clear"></div>
<div class="restaurant-name">
<label for="restaurant">Restaurant Name:</label>
<input type="text" name="restaurant" placeholder="Name">
</div>
<div class="tip">
<p>Tip:</p>
<div class="style-radio">
<p>10%</p>
<p>They did their job!</p>
<input type="radio" id="job_choice" class="tip-selector" name="choice1" value="0.10">
</div>
<div class="style-radio">
<p>15%</p>
<p>They made you feel special</p>
<input type="radio" id="special_choice" class="tip-selector" name="choice1" value="0.15">
</div>
<div class="style-radio">
<p>20%</p>
<p>I wanna give the more,<br>but this is all I have</p>
<input type="radio" id="high_choice" class="tip-selector" name="choice1" value="0.20">
</div>
</div>
<div class="clear"></div>
<div class="total">
<p>Total Amount:</p><p id="total-amount">0</p>
<input type="submit" value='submit'>
</div>
</form>
</div>
</section>
</div>
<script src="./js/foodar.js"></script>
</body>
</html>