-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
80 lines (74 loc) · 3.2 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="import" href="sections/login.html">
<link rel="import" href="sections/heatmap_input.html">
<link rel="import" href="sections/heatmap_result.html">
<link rel="import" href="sections/realization.html">
<link rel="stylesheet" href="assets/css/variables.css">
<link rel="stylesheet" href="assets/css/nativize.css">
<link rel="stylesheet" href="assets/css/custom.css">
<link rel="stylesheet" href="assets/css/global.css">
<link rel="stylesheet" href="assets/css/nav.css">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/css/section.css">
<title>Nandi App</title>
</head>
<body>
<nav class="nav js-nav is-shown">
<header class="nav-header">
<header class="nav-header">
<img src="assets/img/nandi-logo.gif" class="nav-header-nandi-logo">
<img class="nav-header-nandi-txt" src="assets/img/nandi-txt.png" >
</header>
</header>
<div class="nav-item u-category-menu">
<h5 class="nav-category">
<img class="nav-icon" src="assets/svg/login.svg"></img>
Login
</h5>
<button type="button" id="button-login" data-section="login" class="nav-button">Login</button>
</div>
<div class="nav-item u-category-windows">
<h5 class="nav-category">
<img class="nav-icon" src="assets/svg/map.svg"></img>
Heatmap
</h5>
<button type="button" id="button-heatmap_input" data-section="heatmap_input" class="nav-button">Input</button>
<button type="button" id="button-heatmap" data-section="heatmap" class="nav-button">Result</button>
</div>
<div class="nav-item u-category-menu">
<h5 class="nav-category">
<img class="nav-icon" src="assets/svg/coins.svg"></img>
Realization
</h5>
<button type="button" id="button-realization" data-section="realization" class="nav-button">Avg Realization</button>
</div>
<div style="height: 1.5rem;">
<span id="min" style="float: left; font-size: 1rem; font-weight: 400; color: black;"></span>
<span id="max" style="float: right; font-size: 1rem; font-weight: 400; color: black;"></span>
</div>
<div style="height: 20px; background: linear-gradient(to right, #ff0000, #ffff00, #00ff00, #0000ff);"></div>
<footer class="nav-footer">
<button type="button" id="button-about" data-modal="about" class="nav-footer-button">About</button>
<p class="nav-footer-logo">
The App was developed by students of <span onclick="secret()" id="secret">BITS</span> Pilani during the time of Practice School
</p>
</footer>
</nav>
<main class="content js-content is-shown"></main>
</body>
<script>
require('./assets/imports.js');
require('./assets/nav.js');
// You can also require other files to run in this process
require('./renderer.js');
</script>
<script type="text/javascript" src="./assets/js/heatmap.js"></script>
<script type="text/javascript" src="./assets/login.js"></script>
<script type="text/javascript" src="./assets/js/heatmap_input.js"></script>
<script type="text/javascript" src="./assets/js/heatmap_create.js"></script>
<script type="text/javascript" src="./assets/js/realization.js"></script>
<script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyA9Hwdql_NQZJhdV1u5V6syNsRUHVtCFWM&callback=initMap"></script>
</html>