mirror of
https://github.com/simple-login/app.git
synced 2024-11-10 21:27:10 +01:00
8 lines
190 B
Python
8 lines
190 B
Python
from app.onboarding.base import onboarding_bp
|
|
from flask import render_template
|
|
|
|
|
|
@onboarding_bp.route("/", methods=["GET"])
|
|
def index():
|
|
return render_template("onboarding/index.html")
|