-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplace_order.html
71 lines (70 loc) · 3.5 KB
/
place_order.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Shipment Information</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"></script>
<script src="assets/scripts/scripts.js"></script>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.0/css/all.css"
integrity="sha384-lZN37f5QGtY3VHgisS14W3ExzMWZxybE1SJSEsQp9S+oqd12jhcu+A56Ebc1zFSJ" crossorigin="anonymous">
</head>
<body>
<div style="margin-bottom: 60px;">
<div w3-include-html="shared/header.html"></div>
</div>
<div class="container-fluid">
<br>
<div class="row">
<div class="col-md-4"></div>
<div class="col-md-4">
<h4 id="heading" style="text-align: center;">Shipment Information</h4>
</div>
</div>
<div class="row">
<div class="col-md-4"></div>
<div class="col-md-4">
<form>
<div class="input-group mb-3">
<input type="text" class="form-control" placeholder="Full Name" id="name" name="name" disabled>
</div>
<div class="input-group mb-3">
<input type="number" class="form-control" placeholder="Mobile Number" id="mobile" name="mobile">
</div>
<div class="input-group mb-3">
<input type="number" class="form-control" placeholder="Landline" id="landline" name="landline">
</div>
<div class="input-group mb-3">
<input type="text" class="form-control" placeholder="Country" id="country" name="country">
</div>
<div class="input-group mb-3">
<input type="text" class="form-control" placeholder="City" id="city" name="city">
</div>
<div class="input-group mb-3">
<input type="text" class="form-control" placeholder="Address" id="address" name="address">
</div>
<p>Delievery Options: </p>
<div class="custom-control custom-radio">
<input type="radio" class="custom-control-input" id="cash" name="cash" value="cash" checked>
<label class="custom-control-label" for="customRadio">Cash on Delivery</label>
</div>
<p></p>
<button type="button" class="btn btn-warning text-white" onclick="placeOrder()">Place Order</button>
</form>
</div>
</div>
<div class="row">
<div class="col-md-2"></div>
<div class="col-md-8">
</div>
</div>
</div>
<script>
includeHTML(false);
renderData();
</script>
</body>
</html>