This commit is contained in:
2025-04-19 19:59:28 +02:00
parent 17a11fb43c
commit 1fa0b30169
5 changed files with 680 additions and 0 deletions

View File

@@ -25,6 +25,7 @@ pub fn configure_routes(cfg: &mut web::ServiceConfig) {
.route("/about", web::get().to(HomeController::about))
.route("/contact", web::get().to(HomeController::contact))
.route("/contact", web::post().to(HomeController::submit_contact))
.route("/editor", web::get().to(HomeController::editor))
// Auth routes
.route("/login", web::get().to(AuthController::login_page))