-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathorder_page.html
More file actions
51 lines (43 loc) · 2.03 KB
/
order_page.html
File metadata and controls
51 lines (43 loc) · 2.03 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
<!DOCTYPE html>
<html>
<head>
<title>Order Now</title>
<link rel="stylesheet" href="./registyle.css">
<style type="text/style">
*{
}
</style>
<link href="https://fonts.googleapis.com/css2?family=Montserrat&display=swap" rel="stylesheet">
<head>
<body style="background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url('./images/fruit.jpg'); font-family: 'Montserrat', sans-serif;">
<div class="form" style="min-height: 120vh; background: rgb(58,180,164);
background: linear-gradient(90deg, rgba(58,180,164,1) 0%, rgba(238,215,215,1) 55%, rgba(208,252,69,1) 100%); border-radius: 5px; min-height: 85vh;" >
<img class="image" src="./images/logo.png" alt=""><br>
<h3 style="text-align: center;">ORDER HERE</h3>
<form action="order.php" method="POST" autocomplete="off">
<select class="input" name="canteen" >
<option value="chichi">chichi</option>
<option value="bika">bika</option>
<option value="yamuna">yamuna</option>
<option value="raj">raj</option>
</select> <br><br>
<!-- <input class="input" type="text" name="canteen" placeholder="Canteen" required><br><br> -->
<select class="input" name="item" >
<option value="samosa">samosa</option>
<option value="aloo-paratha">Aloo paratha</option>
<option value="cold-drink">cold drink</option>
<option value="maggi">maggi</option>
<option value="chai">chai</option>
<option value="sandwich">sandwich</option>
<option value="coffie">coffie</option>
</select> <br><br>
<input class="input" type="text" name="quantity" placeholder="Quantity" required><br><br>
<!-- <button class="input" style="background:black"><a style="color:white;text-decoration:none" href="payment.php">payment options</a>
</button> -->
<input class="input" style=" border: none; background:#6b6057;color:white; border-radius: 25px;" type="submit" name="submit" value="Order"> <br>
<br>
<button class="input" style="border: none; background:#f11ed0; border-radius: 25px;"><a style="color:white;text-decoration:none; " href="registration_form.php">Register Here</a></button>
</form>
</div>
</body>
</head>