-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckstatus.html
37 lines (33 loc) · 993 Bytes
/
checkstatus.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="statuscheck.css">
<title>My Profile Page</title>
</head>
<body>
<form action="status.php" method="post">
<nav>
<div>
<a href="historyhtml.php">History</a>
<a href="#">Contact</a>
</div>
<a href="logout.php">Logout</a>
</nav>
<div class="page-content">
<h1>Check Status</h1>
<div>
<label>Enter the Order id :</label>
<input type="number" id="check" name="order_id" value="Enter your Order ID" required>
<button type="submit">Confirm</button>
<a href=mainhtml.php><button type=button class=back-button>Back</button></a>
<!-- <?php include("status.php"); ?> -->
</div>
</div>
</form>
<footer>
<p>© 2023 BookMyPlate. All rights reserved.</p>
</footer>
</body>
</html>