-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathreceipt.html
53 lines (42 loc) · 1.82 KB
/
receipt.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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Spend Billionaires - Try spending money like a billionaire</title>
<meta name="author" content="Karel Cermak">
<meta name="description" content="Let's be a billionaire for a moment and try to spend their money.">
<meta name='viewport' content='width=device-width, initial-scale=1'>
<meta name="theme-color" content="#ffffff">
<link rel='icon' type='image/png' href='https://cdn.karlosoft.com/cdn-data/ks/img/fav/png-white-transparent.png' />
<script src='partials/js/config.js'></script>
<script>
enplatedSettingsCustom = {
useDarkMode : false,
};
</script>
<script src='https://cdn.karlosoft.com/cdn-data/ks/script/gdpr-settings.js'></script>
<script src='https://cdn.jsdelivr.net/gh/K-cermak/Enplated-Framework@enp-v3/enp-loader.min.js'></script>
<link rel='stylesheet' href='partials/css/basic.css' />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&display=swap" rel="stylesheet">
<style>
body {
font-family: "Courier Prime", monospace;
font-weight: 400;
font-style: normal;
font-size: 1.2rem;
}
h2, h4 {
font-weight: 700;
}
</style>
</head>
<body class="d-flex flex-column min-vh-100 px-2">
<h2 class="p-3 pb-0">Receipt for <span class="selectedPersonName"></span>:</h2>
<div class="receiptItems px-3"></div>
<h4 class="my-3 mx-3">Total: <b class="totalPrice"></b> $.</h4>
<script src="partials/js/receipt.js"></script>
</body>
</html>