Files
utilities/work/recovery-ui/recovery/blueprints/page/views.py
T
2025-05-20 09:16:54 -04:00

19 lines
350 B
Python

from flask import Blueprint, render_template
page = Blueprint('page', __name__, template_folder='templates')
@page.route('/')
def home():
return render_template('index.html')
@page.route('/service')
def service():
return render_template('service.html')
@page.route('/privacy')
def privacy():
return render_template('privacy.html')