mirror of
https://github.com/Casvt/MIND.git
synced 2026-02-19 11:54:46 -05:00
17 lines
388 B
Python
17 lines
388 B
Python
#-*- coding: utf-8 -*-
|
|
|
|
import logging
|
|
from flask import Blueprint, render_template
|
|
|
|
ui = Blueprint('ui', __name__)
|
|
|
|
methods = ['GET']
|
|
|
|
@ui.route('/', methods=methods)
|
|
def ui_login():
|
|
return render_template('login.html', url_prefix=logging.URL_PREFIX)
|
|
|
|
@ui.route('/reminders', methods=methods)
|
|
def ui_reminders():
|
|
return render_template('reminders.html', url_prefix=logging.URL_PREFIX)
|