Compare commits

...

2 Commits

Author SHA1 Message Date
ddfea0530d
Merge pull request 'fix syntax for password input in login form' (!66) from bugfix/fix-login-password-layout into develop
All checks were successful
mapguesser/pipeline/head This commit looks good
Reviewed-on: #66
2023-05-16 18:08:37 +02:00
9d7d19899d
fix syntax for password input in login form
All checks were successful
mapguesser/pipeline/pr-develop This commit looks good
2023-05-16 18:06:30 +02:00

View File

@ -5,7 +5,7 @@
<div class="box">
<form id="loginForm" action="/login" method="post" data-redirect-on-success="<?= $redirectUrl ?>">
<input type="email" class="text big fullWidth" name="email" placeholder="Email address" autocomplete="username" required autofocus>
<input type="password" class="text big fullWidth marginTop" name="password" placeholder="Password autocomplete="current-password"" required minlength="6">
<input type="password" class="text big fullWidth marginTop" name="password" placeholder="Password" autocomplete="current-password" required minlength="6">
<p id="loginFormError" class="formError justify marginTop"></p>
<div class="right marginTop">
<button type="submit">Login</button>