-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsystem.html
More file actions
193 lines (186 loc) · 6.78 KB
/
Copy pathsystem.html
File metadata and controls
193 lines (186 loc) · 6.78 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
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
<!DOCTYPE html>
<html>
<head>
<title>PKJ Bank - Dashboard</title>
<script src="fun.js"></script>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 0;
background-color: #f0f2f5;
color: #333;
line-height: 1.6;
}
.header {
background-color: #ff6347;
color: white;
text-align: center;
padding: 20px 0;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header h1 {
margin: 0;
font-size: 2.2rem;
}
.container {
max-width: 800px;
margin: 40px auto;
padding: 30px;
background-color: white;
border-radius: 10px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.welcome-message {
margin-bottom: 30px;
text-align: center;
color: #444;
font-size: 1.8rem;
}
.welcome-subtitle {
text-align: center;
font-size: 1.4rem;
margin-bottom: 30px;
color: #666;
}
.bank-options {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
gap: 20px;
margin-top: 30px;
}
.bank-option {
background-color: #fff;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
transition: transform 0.3s, box-shadow 0.3s;
}
.bank-option:hover {
transform: translateY(-5px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
.option-header {
background-color: #ff6347;
color: white;
padding: 15px;
text-align: center;
}
.option-body {
padding: 20px;
text-align: center;
}
.option-icon {
font-size: 2.5rem;
margin-bottom: 10px;
}
.bank-button {
background-color: #ff6347;
color: white;
border: none;
padding: 12px 20px;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
display: inline-block;
text-decoration: none;
font-size: 1rem;
margin-top: 15px;
width: 100%;
}
.bank-button:hover {
background-color: #e74c3c;
}
.navigation {
display: flex;
justify-content: center;
background-color: #333;
padding: 15px 0;
}
.navigation a {
color: white;
text-decoration: none;
margin: 0 15px;
font-size: 1rem;
transition: color 0.3s;
}
.navigation a:hover {
color: #ff6347;
}
.footer {
text-align: center;
padding: 20px;
background-color: #333;
color: white;
margin-top: 40px;
}
</style>
</head>
<body onload="wel()">
<div class="navigation">
<a href="index.html">Restaurant Home</a>
<a href="order_online.html">Order Online</a>
<a href="track_order.html">Track Order</a>
<a href="bank_system.html">Bank System</a>
</div>
<div class="header">
<h1>PKJ Bank Dashboard</h1>
</div>
<div class="container">
<h1 id="m3" class="welcome-message"></h1>
<h2 class="welcome-subtitle">What would you like to do?</h2>
<div class="bank-options">
<div class="bank-option">
<div class="option-header">
<h3>Account Balance</h3>
</div>
<div class="option-body">
<div class="option-icon">💰</div>
<p>Check your current account balance</p>
<a href="balance.html" class="bank-button">View Balance</a>
</div>
</div>
<div class="bank-option">
<div class="option-header">
<h3>Deposit</h3>
</div>
<div class="option-body">
<div class="option-icon">💵</div>
<p>Add funds to your account</p>
<a href="deposite.html" class="bank-button">Deposit Money</a>
</div>
</div>
<div class="bank-option">
<div class="option-header">
<h3>Withdraw</h3>
</div>
<div class="option-body">
<div class="option-icon">💸</div>
<p>Withdraw money from your account</p>
<a href="withdraw.html" class="bank-button">Withdraw Money</a>
</div>
</div>
<div class="bank-option">
<div class="option-header">
<h3>Restaurant Payment</h3>
</div>
<div class="option-body">
<div class="option-icon">🍔</div>
<p>Pay for your restaurant order</p>
<a href="order_online.html" class="bank-button">Order Food</a>
</div>
</div>
<div class="bank-option">
<div class="option-header">
<h3>Logout</h3>
</div>
<div class="option-body">
<div class="option-icon">🔒</div>
<p>Securely log out of your account</p>
<button onclick="lo()" class="bank-button">Logout</button>
</div>
</div>
</div>
</div>
</body>
</html>