deepface/views/public_route.py
2020-10-19 23:58:40 +11:00

18 lines
439 B
Python

from flask import Blueprint, render_template
public_route_bp = Blueprint('public_route', __name__)
@public_route_bp.route('/')
def render_homepage():
return render_template("homePage.html")
@public_route_bp.route('/breed-list')
def render_breed_info_page():
return render_template('breedPage.html')
@public_route_bp.route('/statistical-data')
def render_statistical_page():
return render_template('statisticalPage.html')