-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (37 loc) · 1.59 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
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=yes">
<title>Cost Calculator</title>
<link rel="icon" href="./icon/costcalc.png">
<!-- Load React. -->
<!-- Note: when deploying, replace "development.js" with "production.min.js". -->
<script src="https://unpkg.com/react@18/umd/react.production.min.js"></script>
<script src="https://unpkg.com/react-dom@18/umd/react-dom.production.min.js"></script>
<script src="https://unpkg.com/[email protected]/prop-types.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/babel-standalone/7.24.3/babel.min.js"></script>
<!--Load Bootstrap-->
<script src="js/jquery-3.7.1.min.js"></script>
<script src="js/bootstrap.bundle.js"></script>
<!--Load money.js-->
<script src="js/money.min.js"></script>
<!--Load Cost calc engine-->
<link rel="stylesheet" href="css/costcalc.css">
<script type="text/babel" src="js/data.js"></script>
<script type="text/jsx" src="js/costcalc_stats.jsx"></script>
<script type="text/jsx" src="js/costcalc_export.jsx"></script>
<script type="text/jsx" src="js/costcalc_money.jsx"></script>
<script type="text/jsx" src="js/costcalc_main.jsx"></script>
<script>
$(window).bind('beforeunload', function(){
return '>>>>>Before You Go<<<<<<<< \n Your data will be lost are you sure ?';
});
</script>
</head>
<body>
<div id="root">
<!-- This div's content will be managed by React. -->
</div>
</body>
</html>