-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSearchCashier.html
More file actions
46 lines (42 loc) · 1.61 KB
/
SearchCashier.html
File metadata and controls
46 lines (42 loc) · 1.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
</head>
<body id="SerchCashierBody" >
<div class="heading-container">
<img src="img/logo.(1).PNG" alt="Logo" class="heading-image">
<h1 id="HeadingPlaceOrder">Search Cashier</h1>
</div>
<div >
<button class="back-button fade-in" onclick="location.href='Admin.html'">Back</button>
<input id="SearchCashierTxt" type="text">
<input id="SearchCashierBtn" type="button" value="Search" onclick="searchCashier()">
</div>
<div id="SearchCashierInter">
<div class="input-container">
<label id="CashierName" for="name">Cashier Name:</label>
<input type="text" id="CashierNameSearchTxt" >
</div>
<div class="input-container">
<label id="CashierPasswordSearch" for="name">Cashier Password:</label>
<input type="text" id="CashierPasswordSearchTxt" >
</div>
<input id="UpdateCashier" type="button" value="Update" onclick="updateCashier()">
<input id="DeleteCashier" type="button" value="Delete" onclick=" deleteCashier()">
</div>
<div id="customAlert" class="modal">
<div class="modal-content">
<span class="close-button" onclick="closeAlert()">×</span>
<p id="alertMessage"></p>
</div>
</div>
<div id="SearchCashierBox">
</div>
<script src="app.js"></script>
</body>
</html>