You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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')
|