-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathlastpage.html
63 lines (61 loc) · 1.94 KB
/
lastpage.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
<html>
<head>
<title>KC Cafe \ Last Page</title>
<link rel="stylesheet" type="text/css" href="assets/css/lastpage.css" />
<link
rel="stylesheet"
type="text/css"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
/>
</head>
<body>
<div class="container">
<form
class="well form-horizontal"
action=" "
method="post"
id="contact_form"
>
<fieldset>
<legend>Enter your delivery address</legend>
<form action="lastpageecho.php" method="post">
<div class="form-group">
<label class="col-md-4 control-label">Class No</label>
<div class="col-md-4 inputGroupContainer">
<div class="input-group">
<span class="input-group-addon"
><i class="glyphicon glyphicon-user"></i
></span>
<input
name="class_no"
placeholder="Class No or Lab No"
class="form-control"
type="text"
/>
</div>
</div>
</div>
<div class="form-group">
<label class="col-md-4 control-label">Mobile Number</label>
<div class="col-md-4 inputGroupContainer">
<div class="input-group">
<span class="input-group-addon"
><i class="glyphicon glyphicon-user"></i
></span>
<input
name="mobilenumber"
placeholder="Mobile Number"
class="form-control"
type="text"
/>
</div>
</div>
</div>
<br />
<button type="submit"><span>Place Order</span></button>
</form>
</fieldset>
</form>
</div>
</body>
</html>