-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (38 loc) · 1.67 KB
/
index.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" crossorigin>
<link rel="manifest" href="manifest.json">
<title>Timesheets</title>
<style>
.accordion-item {
border-left: 0;
border-right: 0;
border-radius: 0 !important;
}
.accordion-button {
border-radius: 0 !important;
}
</style>
</head>
<body>
<div class="alert alert-secondary alert-dismissible fade show rounded-0 border-0 d-none" role="alert" id="sw-update-alert">
<a href="#" role="button" id="sw-skip-waiting" class="alert-link">Update now</a> to get the latest version.
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>
<div id="app"></div>
<p class="container">
<a href="https://github.com/RyanBerliner/timesheets/blob/master/README.md" target="_blank">
What is this and how do I use it?
</a><br/>
<small class="text-muted d-block">Version 2022.05.15.0</small>
</p>
<script src="https://unpkg.com/react@17.0.2/umd/react.production.min.js" crossorigin></script>
<script src="https://unpkg.com/react-dom@17.0.2/umd/react-dom.production.min.js" crossorigin></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" crossorigin></script>
<script src="https://cdn.jsdelivr.net/npm/bs5-react-elements@2.1.0/dist/bs5-react-elements.min.js" crossorigin></script>
<script src="app.js"></script>
</body>
</html>