64 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
require_once('system/data.php');
 | 
						|
 | 
						|
dbVerbindungErzeugen()
 | 
						|
?>
 | 
						|
 | 
						|
<!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>
 | 
						|
    <link rel="stylesheet" href="/css/style.css">
 | 
						|
 | 
						|
 | 
						|
  <script>UPLOADCARE_LOCALE="de"
 | 
						|
  UPLOADCARE_LOCALE_TRANSLATIONS = {
 | 
						|
    buttons: {
 | 
						|
      choose: {
 | 
						|
        files: {
 | 
						|
            other: 'Bild hochladen'
 | 
						|
        }
 | 
						|
      }
 | 
						|
    }
 | 
						|
  }</script>
 | 
						|
 | 
						|
</head>
 | 
						|
<body>
 | 
						|
 | 
						|
    <div id="map">
 | 
						|
    </div>
 | 
						|
 | 
						|
    <div class="MapControls">
 | 
						|
    <img src="/images/navigation.png" id="currentLocation">
 | 
						|
 | 
						|
 | 
						|
    </div>
 | 
						|
 | 
						|
    <div id="overlay" class="hidden">
 | 
						|
      <img src="/images/cancel.png" id="cancel">
 | 
						|
 | 
						|
      <div id="overlay_container">
 | 
						|
 | 
						|
     
 | 
						|
      </div>
 | 
						|
      
 | 
						|
      </div>
 | 
						|
    </div>
 | 
						|
 | 
						|
 | 
						|
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
 | 
						|
    <script src="https://ucarecdn.com/libs/widget/3.x/uploadcare.full.min.js"></script>
 | 
						|
 | 
						|
 | 
						|
 | 
						|
    <script src="js/functions.js"></script>
 | 
						|
    <script src="js/main.js"></script>
 | 
						|
    <script src="loadMap.js"></script>
 | 
						|
    <script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAkfYzlFa9nljVhIyfPQoz3n7Zi5TOs4WQ&callback=initMap"
 | 
						|
      defer ></script>
 | 
						|
</body>
 | 
						|
</html>
 |