ApplicantPortal/app/applicant/routes.py
2025-03-12 20:43:26 -06:00

10 lines
198 B
Python

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