14 lines
296 B
Python
14 lines
296 B
Python
"""Authentication routes"""
|
|
|
|
from flask import Blueprint, render_template, session, redirect, url_for, \
|
|
request, flash, current_app, abort, send_from_directory
|
|
|
|
from app import db
|
|
|
|
map_bp = Blueprint('map', __name__)
|
|
|
|
|
|
@map_bp.route('/map')
|
|
def map():
|
|
return render_template('map.html')
|