1
0
mirror of https://koodu.h-i.works/projects/thebadspace synced 2025-06-25 16:04:37 -05:00

Working Appeals form

Still need to style the email form, but the Appeal Form is working with
a bit of protection from bots to cut down on spam.
This commit is contained in:
ro
2024-02-05 14:02:27 -06:00
parent 81ec8a8617
commit 5c9b982b1f
6 changed files with 70 additions and 11 deletions

View File

@ -26,7 +26,7 @@ Route::get("/about", [FrontIndexController::class, 'about']);
Route::get("/location/{uuid}", [FrontIndexController::class, 'location']);
Route::get("/appeals", [FrontIndexController::class, 'appeals']);
Route::post("/search", [FrontIndexController::class, 'indexSearch']);
Route::get("/appeal", [AppealMailController::class, 'sendAppeal']);
Route::post("/appeal", [AppealMailController::class, 'sendAppeal']);
//exports
Route::get("/exports", [ExportController::class, 'exportIndex']);