forked from HamedOsama/Mapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
85 lines (81 loc) · 3.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<meta name="description" content="Map your workouts">
<link rel="icon" type="image/png" href="./imgs/icon.png" />
<link href="https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700;800&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.8.0/dist/leaflet.css"
integrity="sha512-hoalWLoI8r4UszCkZ5kL8vayOGVae1oxXe/2A4AO6J9+580uKHDO3JdHb7NzwwzK5xr/Fs0W40kiNHxM9vyTtQ=="
crossorigin="" />
<script src="https://unpkg.com/leaflet@1.8.0/dist/leaflet.js"
integrity="sha512-BB3hKbKWOc9Ez/TAwyWxNXeoV9c1v6FIeYiBieIWkpLjauysF18NzgR1MBNBXf8/KABdlkX68nAhlwcDFLGPCQ=="
crossorigin=""></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"
integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="style/popup.css" />
<link rel="stylesheet" href="style/style.css" />
<script defer src="scripts/popup.js"></script>
<script defer src="scripts/main.js"></script>
<title>Mapp</title>
</head>
<body>
<div class="popup center ">
<div class="icon">
<i class="fa fa-check"></i>
</div>
<div class="title">
<p id="annStatus">Success</p>
</div>
<div class="text" id="text">
Student Deleted Successfully
</div>
<div class="btn-okay">
Okay
</div>
</div>
<div class="sidebar">
<img src="imgs/logo.png" alt="Logo" class="logo" />
<ul class="workouts">
<form class="form hidden">
<div class="form__row">
<label for='type' class="form__label">Type</label>
<select id="type" class="form__input form__input--type">
<option value="running">Running</option>
<option value="cycling">Cycling</option>
</select>
</div>
<div class="form__row">
<label class="form__label">Distance</label>
<input class="form__input form__input--distance" placeholder="km" />
</div>
<div class="form__row">
<label class="form__label">Duration</label>
<input class="form__input form__input--duration" placeholder="min" />
</div>
<div class="form__row">
<label class="form__label">Cadence</label>
<input class="form__input form__input--cadence" placeholder="step/min" />
</div>
<div class="form__row form__row--hidden">
<label class="form__label">Elev Gain</label>
<input class="form__input form__input--elevation" placeholder="meters" />
</div>
<button type="submit" class="form__btn">OK</button>
</form>
<p class="copyright">
© Copyright by
<a class="github-link" target="_blank" rel="noopener" href="https://github.com/HamedOsama">Hamed Osama</a>.
Use for
learning or your portfolio. Don't use to teach. Don't claim
as your own.
</p>
<i class="fa-solid fa-location-arrow currentLocation"></i>
</div>
<div id="map">
</div>
</body>
</html>