5.4.2.11.1. gemini_interface.blueprint.auth.routes

Authentication Routes.


This module handles user authentication, login, logout, password management, and user registration.

Functions

login()

Display the login page.

login_post()

Process user login form submission.

logout()

Log out the current user and clear session data.

password()

Display password change page.

password_post()

Process password change form submission.

signup()

Display user registration page (admin only).

signup_post()

Process user registration form submission.

gemini_interface.blueprint.auth.routes.login()[source]

Display the login page.

gemini_interface.blueprint.auth.routes.login_post()[source]

Process user login form submission.

gemini_interface.blueprint.auth.routes.logout()[source]

Log out the current user and clear session data.

gemini_interface.blueprint.auth.routes.password()[source]

Display password change page.

gemini_interface.blueprint.auth.routes.password_post()[source]

Process password change form submission.

gemini_interface.blueprint.auth.routes.signup()[source]

Display user registration page (admin only).

gemini_interface.blueprint.auth.routes.signup_post()[source]

Process user registration form submission.