working on login form

Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
2024-07-17 00:46:44 +02:00
parent add4209a1f
commit 67606a80f4
5 changed files with 28 additions and 7 deletions

View File

@@ -17,7 +17,7 @@ public class Backend extends PathHandler {
System.out.printf("%s %s…", method, path);
if ("login".equals(path)) {
doLogin(ex);
doLogin(ex); // TODO: prevent brute force
return;
}
var token = getAuthToken(ex);