-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
95 lines (88 loc) · 4.65 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mapty</title>
<link rel="shortcut icon" href="Images/icon.png" type="image/x-icon">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/bootstrap-icons.min.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css"
integrity="sha256-p4NxAoJBhIIN+hmNHrzRCf9tD/miZyoHS5obTRR9BMY=" crossorigin="" />
<script defer src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js"
integrity="sha256-20nQCchB9co0qIjJZRGuk2/Z9VM+kNiyxNV1lvTlZBo=" crossorigin=""></script>
<script src="js/bootstrap.bundle.min.js" defer></script>
<script src="js/script.js" defer></script>
</head>
<!-- xxl xl lg md sm -->
<body>
<main class="container-fluid ms-auto p-4 vh-100">
<div class="row h-100">
<div class="h-100 col-md-5 col-lg-4 acions d-flex flex-column justify-content-between">
<picture class="text-center mt-5">
<img src="Images/logo.png" alt="logo">
</picture>
<div
class="row action-center w-90 mx-auto overflow-y-auto d-flex flex-column justify-content-start gap-3 flex-nowrap h-100 mt-5">
<div class="col-12 form hidden d-none">
<form class="row row-cols-4 gy-1">
<div class="col"> <label for="Type" for="type">Type</label></div>
<div class="col"><select class="rounded-2 px-2 " name="Type" id="type">
<option value="Running">Running</option>
<option value="Cycling">Cycling</option>
</select></div>
<div class="col"><label for="Distace">Distace</label></div>
<div class="col"><input class="rounded-2 px-2 " type="text" placeholder="km" id="Distace"
name="Distace">
</div>
<div class="col"><label for="Duration">Duration</label></div>
<div class="col">
<input class="rounded-2 px-2 " type="text" name="Duration" placeholder="min"
id="Duration">
</div>
<div class="col run-input">
<label for="Cadence">Cadence</label>
</div>
<div class="col run-input">
<input class="rounded-2 px-2 " type="text" placeholder="step/min" name="Cadence"
id="Cadence">
</div>
<div class="col d-none cylce-input">
<label for="ElevGain">Elev Gain</label>
</div>
<div class="col d-none cylce-input">
<input class="rounded-2 px-2" type="text" placeholder="meters" id="ElevGain"
name="ElevGain">
</div>
<button type="submit" class="d-none"></button>
</form>
</div>
</div>
<footer class="w-90 mx-auto my-3">
<div class=" row
">
<div class="col d-flex justify-content-evenly mb-3">
<button class="btn btn-danger w-25">
Reset
</button>
<button class="btn btn-warning w-25">
Sort
</button>
</div>
</div>
<p class="sub text-center ">© Copyright by Jonas Schmedtmann. Use for learning or your
portfolio.
Don't use
to
teach. Don't claim as your own.</p>
</footer>
</div>
<div class="col bg-body-secondary align-self-start h-100" id="map"></div>
</div>
</main>
</body>
</html>