Files
MIND/frontend/ui.py
2023-01-13 00:38:44 +01:00

16 lines
311 B
Python

#-*- coding: utf-8 -*-
from flask import Blueprint, render_template
ui = Blueprint('ui', __name__)
methods = ['GET']
@ui.route('/', methods=methods)
def ui_login():
return render_template('login.html')
@ui.route('/reminders', methods=methods)
def ui_reminders():
return render_template('reminders.html')