Beispiel #1
0
def delete():
    if get_host():
        return redirect(url_for("main.host"))
    return render_template('delete.html')
Beispiel #2
0
def password():
    if get_host():
        return redirect(url_for("main.host"))
    return render_template('update_password.html')
Beispiel #3
0
def logout():
    if get_host():
        return redirect(url_for("main.host"))
    return 'Logout'
Beispiel #4
0
def token():
    if get_host():
        return redirect(url_for("main.host"))
    return render_template('token.html')
Beispiel #5
0
def signup():
    if get_host():
        return redirect(url_for("main.host"))
    return render_template('signup.html')