-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (79 loc) · 3.81 KB
/
index.html
File metadata and controls
88 lines (79 loc) · 3.81 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<title>Tactica</title>
<link rel="canonical" href="https://getbootstrap.com/docs/4.5/examples/cover/">
<link href="css/bootstrap.css" rel="stylesheet">
<link rel="stylesheet" href="css/jquery-ui.min.css">
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.6.0/dist/leaflet.css"/>
<link rel="stylesheet" href="https://unpkg.com/@atlaskit/css-reset@2.0.0/dist/bundle.css" media="all">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-cookie/1.4.1/jquery.cookie.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script src="js/common.js"></script>
<script src="js/city.js"></script>
<script src="https://unpkg.com/leaflet@1.6.0/dist/leaflet.js"></script>
<style>
.bd-placeholder-img {
font-size: 1.125rem;
text-anchor: middle;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
@media (min-width: 768px) {
.bd-placeholder-img-lg {
font-size: 3.5rem;
}
}
</style>
<!-- Custom styles for this template -->
<link href="css/cover.css?v=1" rel="stylesheet">
</head>
<body>
<section id="content" class="cover-container d-flex w-100 h-100 p-3 mx-auto flex-column ac-content">
<header class="masthead">
<div class="inner">
<h3 class="masthead-brand">Find your co-workers on map</h3>
<nav class="nav nav-masthead justify-content-center">
<a class="nav-link active" href="#">Home</a>
<a class="nav-link" href="#">Features</a>
<a class="nav-link" href="#">Contact</a>
</nav>
</div>
</header>
<main role="main">
<div id="fullpage" class="row featurette">
<div class="col-3">
<!-- Panel for adding location -->
<div id="SelectedLocationContainer" class="SelectedLocationContainer">
<label for="city-location" class="col-form-label">Type city:</label>
<input type="text" class="city-location" id="city-location">
<span class="suggested-city"></span>
</div>
<!-- End Panel -->
<!-- Template is used for adding location by client javascript by copying this template. -->
<div id="SelectedLocation" class="selectedLocation" style="display: none;">
<div class="selectedContent" onclick="SetActiveLocation(this.parentNode);"></div>
<div class="selectedClose" onclick="CloseSelected(this.parentNode);">×</div>
</div>
<!-- End tempalte -->
</div>
<div class="col mapblock">
<div id="mapid"></div>
</div>
</div>
</main>
<footer class="mastfoot mt-auto">
<hr class="featurette-divider">
<div class="inner">
<p>Done by <a href="https://optiklab.github.io">optiklab</a>.</p>
</div>
</footer>
</section>
</body>
</html>