diff --git a/app/static/assets/leaflet/utils.js b/app/static/assets/leaflet/utils.js
index b432ab0..c9563e1 100644
--- a/app/static/assets/leaflet/utils.js
+++ b/app/static/assets/leaflet/utils.js
@@ -44,4 +44,20 @@ function addPlayerMarker(map, player){
var timestamp_local = moment(timestamp_utc).local().format('YYYY-MM-DD HH:mm');
playerMarker.bindTooltip(`${player['username']}
${timestamp_local}`).openPopup();
-}
\ No newline at end of file
+}
+
+function getMap(){
+ var map = L.map( 'map', {
+ center: [52.2, 5.3],
+ minZoom: 6,
+ maxZoom: 18,
+ bounds: [[50.5, 3.25], [54, 7.6]],
+ zoom: 8
+ });
+ L.control.scale().addTo(map);
+
+ L.tileLayer( 'https://geodata.nationaalgeoregister.nl/tiles/service/wmts/brtachtergrondkaartpastel/EPSG:3857/{z}/{x}/{y}.png', {
+ attribution: 'Kaartgegevens © Kadaster'
+ }).addTo( map );
+ return map
+}
diff --git a/app/templates/auth/login.html b/app/templates/auth/login.html
index ec88b87..cf36584 100644
--- a/app/templates/auth/login.html
+++ b/app/templates/auth/login.html
@@ -2,14 +2,20 @@
{% import 'bootstrap/wtf.html' as wtf %}
{% block app_content %}
-
New User? Click to Register!
+New User? Click to Register!