Fix CSRF token issue in login and register forms

- Added @Html.AntiForgeryToken() to Register.cshtml
- Added @Html.AntiForgeryToken() to Login.cshtml
- Fixes 400 Bad Request errors on form submission

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
2026-02-19 16:03:42 -08:00
parent f1d0d43cb7
commit 15e842ce85
18 changed files with 24 additions and 5 deletions

17
start-server.bat Normal file
View File

@@ -0,0 +1,17 @@
@echo off
echo ========================================
echo Starting RR3 Community Server
echo ========================================
echo.
echo Server will start on: http://localhost:5555
echo.
echo Keep this window open while using the panel!
echo Press Ctrl+C to stop the server
echo.
echo ========================================
echo.
cd /d E:\rr3\RR3CommunityServer\RR3CommunityServer
dotnet run --urls "http://localhost:5555"
pause