2022-10-26 14:08:26 +02:00
|
|
|
<?php
|
|
|
|
require_once('system/data.php');
|
|
|
|
|
|
|
|
dbVerbindungErzeugen()
|
|
|
|
?>
|
|
|
|
|
2022-10-26 12:05:39 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="de">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>SPINN MIT!</title>
|
2022-10-26 16:51:39 +02:00
|
|
|
<link rel="stylesheet" href="/css/style.css">
|
2022-11-15 13:18:14 +01:00
|
|
|
|
|
|
|
|
|
|
|
<script>UPLOADCARE_LOCALE="de"
|
|
|
|
UPLOADCARE_LOCALE_TRANSLATIONS = {
|
|
|
|
buttons: {
|
|
|
|
choose: {
|
|
|
|
files: {
|
|
|
|
other: 'Bild hochladen'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}</script>
|
|
|
|
|
2022-10-26 12:05:39 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
2022-11-15 16:37:33 +01:00
|
|
|
|
2022-10-26 16:51:39 +02:00
|
|
|
<div id="map">
|
|
|
|
</div>
|
2022-10-27 17:33:19 +02:00
|
|
|
|
2022-11-15 16:37:33 +01:00
|
|
|
<div class="MapControls">
|
2022-10-27 17:33:19 +02:00
|
|
|
<img src="/images/navigation.png" id="currentLocation">
|
2022-10-27 12:35:35 +02:00
|
|
|
|
|
|
|
|
|
|
|
</div>
|
2022-11-14 16:27:53 +01:00
|
|
|
|
2022-11-15 16:37:33 +01:00
|
|
|
<div id="overlay" class="hidden">
|
2022-11-14 16:27:53 +01:00
|
|
|
<img src="/images/cancel.png" id="cancel">
|
2022-11-15 13:18:14 +01:00
|
|
|
|
2022-11-14 16:27:53 +01:00
|
|
|
<div id="idee">
|
|
|
|
|
2022-11-15 13:18:14 +01:00
|
|
|
|
|
|
|
</div>
|
|
|
|
<div class="image-preview" id="image-upload">
|
2022-11-14 16:27:53 +01:00
|
|
|
</div>
|
2022-10-27 12:35:35 +02:00
|
|
|
</div>
|
2022-10-26 14:20:01 +02:00
|
|
|
|
2022-11-14 16:27:53 +01:00
|
|
|
|
|
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
|
2022-11-15 13:18:14 +01:00
|
|
|
<script src="https://ucarecdn.com/libs/widget/3.x/uploadcare.full.min.js"></script>
|
|
|
|
|
|
|
|
|
2022-11-14 16:27:53 +01:00
|
|
|
|
2022-10-26 14:20:01 +02:00
|
|
|
<script src="js/functions.js"></script>
|
|
|
|
<script src="js/main.js"></script>
|
2022-10-26 16:51:39 +02:00
|
|
|
<script src="loadMap.js"></script>
|
|
|
|
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAkfYzlFa9nljVhIyfPQoz3n7Zi5TOs4WQ&callback=initMap"
|
|
|
|
defer ></script>
|
2022-10-26 12:05:39 +02:00
|
|
|
</body>
|
2022-10-26 13:11:10 +02:00
|
|
|
</html>
|