-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEnglishHome.html
149 lines (136 loc) · 4.5 KB
/
EnglishHome.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home - Store Cashier & ERP</title>
<link href="https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&display=swap" rel="stylesheet">
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
font-family: 'Cairo', sans-serif;
flex-direction: column;
background: rgba(244, 225, 188, 0.8);
background-size: cover;
position: relative;
}
.icon-textbox-container {
display: flex;
align-items: center;
padding: 10px;
width: 100%;
background-color: #E8D3A5;
box-sizing: border-box;
position: fixed;
top: 0;
left: 0;
}
.icon {
width: 35px;
height: auto;
cursor: pointer;
}
.textbox {
width: 200px;
height: 35px;
margin-left: 10px;
background-color: #F4E1BC;
border: none;
outline: none;
font-size: 18px;
text-align: right;
padding: 5px;
}
.label-container {
display: flex;
flex-direction: column;
gap: 10px;
margin-top: 60px;
}
.label {
font-size: 24px;
direction: rtl;
padding: 10px 20px;
border: 1px solid black;
border-radius: 5px;
cursor: pointer;
text-align: center;
background-color: #D6B77E; /* Darker sand color */
}
.label:hover {
background-color: #e0e0e0;
}
.title {
font-size: 28px;
font-weight: bold;
color: black;
border: 1px solid black;
padding: 10px;
text-align: center;
margin-top: 150px; /* Adjust this value to change how far down the content goes */
background-color: #D6B77E; /* Darker sand color */
}
</style>
</head>
<body>
<div class="icon-textbox-container">
<a href="https://fekrasolutions.github.io/Stores-Cashier-ERP-System/">
<img src="Media/off.png" alt="Icon" class="icon">
</a>
<input type="text" class="textbox" id="emailTextbox" placeholder="" readonly />
</div>
<div class="title">Store Cashier & ERP</div>
<div class="label-container">
<div class="label" onclick="goToCashierPage()">Cashier</div>
<div class="label" onclick="goToPurchasePage()">Purchase Inventory</div>
<div class="label" onclick="goToInventoryPage()">Inventory Balance</div>
<div class="label" onclick="goToCashPage()">Cash Balance</div>
</div>
<script>
// Redirect to ArabicCashier page based on device type with the username in the URL
function goToCashierPage() {
const username = document.getElementById('emailTextbox').value;
if (username) {
window.location.href = `EnglishCashier.html?username=${encodeURIComponent(username)}`;
}
}
// Redirect to Cash page based on device type with the username in the URL
function goToCashPage() {
const username = document.getElementById('emailTextbox').value;
if (username) {
window.location.href = `EnglishCash.html?username=${encodeURIComponent(username)}`;
}
}
// Redirect to ArabicPurchase.html with the username in the URL
function goToPurchasePage() {
const username = document.getElementById('emailTextbox').value;
if (username) {
window.location.href = `EnglishPurchase.html?username=${encodeURIComponent(username)}`;
}
}
// Redirect to inventory.html with the username in the URL
function goToInventoryPage() {
const username = document.getElementById('emailTextbox').value;
if (username) {
window.location.href = `Englishinventory.html?username=${encodeURIComponent(username)}`;
}
}
// Set the textbox value with the username from the URL
window.onload = function () {
const username = getQueryParameter('username');
if (username) {
document.getElementById('emailTextbox').value = username;
}
};
// Function to get query parameters
function getQueryParameter(name) {
const urlParams = new URLSearchParams(window.location.search);
return urlParams.get(name);
}
</script>
</body>
</html>