mirror of
https://github.com/Casvt/MIND.git
synced 2026-02-19 11:54:46 -05:00
16 lines
311 B
Python
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')
|