Browse Source

implemented processing of /user/openid_login?service=X

Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
feature/brute_force_protection
Stephan Richter 3 months ago
parent
commit
18bf8a0f01
  1. 4
      frontend/src/Components/Login.svelte

4
frontend/src/Components/Login.svelte

@ -10,6 +10,8 @@ @@ -10,6 +10,8 @@
const router = useTinyRouter();
let services = $state([]);
function doLogin(ev){
ev.preventDefault();
tryLogin(credentials);
@ -46,6 +48,8 @@ @@ -46,6 +48,8 @@
ev.preventDefault();
router.navigate('/user/reset/pw');
}
if (router.fullPath.endsWith('/openid_login') && router.query.service) redirectTo(router.query.service);
</script>
<style>

Loading…
Cancel
Save