-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgameend.html
91 lines (86 loc) · 4.1 KB
/
gameend.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
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
<!doctype html5>
<html lang="en">
<head>
<title>Gimme Money</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<!-- Fonts and icons -->
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Roboto+Slab:400,700|Material+Icons" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css">
<!-- Material Kit CSS -->
<link href="assets/css/material-dashboard.css?v=2.1.0" rel="stylesheet" />
<!-- Specifics -->
<script src="./assets/js/gameend.js"></script>
<script src="./assets/js/mainlogic.js"></script>
</head>
<body class="dark-edition">
<div class="wrapper ">
<div class="main-panel">
<div class="content">
<div class="container-fluid">
<!-- your content here -->
<h1 class="text-muted">Game over</h1><p class="text-muted">let's see how you did</p>
<div class="row">
<div class="col-xl-3 col-lg-6 col-md-6 col-sm-6">
<div class="card card-stats">
<div class="card-header card-header-warning card-header-icon">
<div class="card-icon">
<i class="material-icons">account_balance</i>
</div>
<p class="card-category">Total Balance</p>
<h3 id="balanceDisplay" class="card-title">
<small>€</small>
</h3>
</div>
</div>
</div>
<div class="col-xl-3 col-lg-6 col-md-6 col-sm-6">
<div class="card card-stats">
<div id="profitCard" class="card-header card-header-success card-header-icon">
<div class="card-icon">
<i id="profitCardSymbol" class="material-icons">trending_up</i>
</div>
<p class="card-category"></p>
<p class="card-category">Profit <small>based on 50k</small></p>
<h3 id="profitDisplay" class="card-title">
<small>%</small>
</h3>
</div>
</div>
</div>
</div>
<button type="button" id="btn_logout" name="login" class="btn btn-login">Logout</button>
<button type="button" id="btn_restart" name="login" class="btn btn-login">Restart</button>
</div>
</div>
<footer class="footer">
<div class="copyright float-right">
©
<script>
document.write(new Date().getFullYear())
</script>, adapted with <i class="material-icons">favorite</i> by
<a href="https://github.com/hYg-Cain" target="_blank">Timo Heyenga</a> for a better grade.
</div>
<!-- your footer here -->
</div>
</footer>
</div>
</div>
<!-- Core JS Files -->
<script src="./assets/js/core/jquery.min.js"></script>
<script src="./assets/js/core/popper.min.js"></script>
<script src="./assets/js/core/bootstrap-material-design.min.js"></script>
<script src="https://unpkg.com/default-passive-events"></script>
<script src="./assets/js/plugins/perfect-scrollbar.jquery.min.js"></script>
<!-- Place this tag in your head or just before your close body tag. -->
<script async defer src="https://buttons.github.io/buttons.js"></script>
<!-- Chartist JS -->
<script src="./assets/js/plugins/chartist.min.js"></script>
<!-- Notifications Plugin -->
<script src="./assets/js/plugins/bootstrap-notify.js"></script>
<!-- Control Center for Material Dashboard: parallax effects, scripts for the example pages etc -->
<script src="./assets/js/material-dashboard.js?v=2.1.0"></script>
</body>
</html>