-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
57 lines (49 loc) · 2.13 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
<!DOCTYPE html>
<html lang="pl">
<head>
<title>geo4wiki: prosty konwerter współrzędnych geograficznych</title>
<meta charset="utf-8"/>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="css/wmpl-styles/wmpl-style.css" />
<link rel="stylesheet" href="css/geo4wiki.css" />
<script src="https://code.jquery.com/jquery-3.5.0.js" defer></script>
<script src="scripts/geo-format-conversion.js" defer></script>
<script src="scripts/geo4wiki-form.js" defer></script>
<script src="https://kit.fontawesome.com/3af13c9288.js" crossorigin="anonymous" defer></script>
</head>
<body>
<article>
<header>
<h1>geo4wiki</h1>
<nav>
<a href="https://github.com/wikimedia-pl/geo4wiki">edytuj <span class="fab fa-github"></span></a>
</nav>
</header>
<p>Prosty konwerter współrzędnych geograficznych z formatu dziesiętnego (<a href="https://maps.google.com/">Google Maps</a>) na zapis w stopniach.</p>
<form id="geo-input">
<input type="text" id="geo-from" name="from" value="" pattern="-?[0-9]+(\.[0-9]+)?, ?-?[0-9]+(\.[0-9]+)?" class="combined-input-and-submit-left" />
<input type="submit" value="Konwertuj" class="button combined-input-and-submit-right" />
</form>
<section id="converted-container">
<h2>Wynik konwersji</h2>
<input type="text" id="converted-result" value="" readonly></input>
<p class="success-msg">Skopiowane do schowka <span class="fas fa-copy"></span></p>
</section>
</article>
<footer>
<div>
<a href="https://wikimedia.pl/">
<img src="images/wikimedia-polska-logo-horizontal-white.png" />
</a>
<p>Stworzone z <i class="fas fa-heart"></i> do wolnej wiedzy.</p>
<p><a href="https://github.com/wikimedia-pl/geo4wiki">Zobacz i rozwiń kod na githubie</a> <span class="fab fa-github"></span></p>
</div>
<div style="text-align: right">
<a href="https://wikimedia.pl/opp/">
<img src="images/logo_1_procent_biale.png" />
</a>
<p>Używasz? <a href="https://wikimedia.pl/darowizny/">Podziękuj i pomóż</a>!</p>
</div>
</footer>
</body>
</html>