forked from ruvnet/gpts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (27 loc) · 822 Bytes
/
index.html
File metadata and controls
30 lines (27 loc) · 822 Bytes
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
<!DOCTYPE html>
<html>
<head>
<base target="_top">
<?!= include('stylesheet'); ?>
</head>
<body>
<header class="app-header">
<h1 class="app-title">Car Wash Kiosk</h1>
</header>
<div class="container">
<div id="app" class="card">Loading data...</div>
</div>
<!-- Confirmation Modal -->
<div class="overlay" id="confirmOverlay">
<div class="overlay-content">
<h2>Confirm Submission</h2>
<p id="confirmMessage">Are you sure you want to submit?</p>
<div class="overlay-buttons">
<button class="overlay-btn" onclick="closeOverlay()">Cancel</button>
<button class="overlay-btn primary" onclick="finalizeSubmission()">Submit</button>
</div>
</div>
</div>
<?!= include('javascript'); ?>
</body>
</html>