ApplicantPortal/app/applicant/routes.py

10 lines
198 B
Python
Raw Normal View History

2025-03-13 02:43:26 +00:00
import os
from flask import render_template, current_app
from . import blueprint
@blueprint.route('/home')
def apply_home():
rendered = render_template('apply/index.html')
return rendered