mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-12-03 05:58:08 -06:00
[feature/frontend] add autocomplete + other helpful attributes to auth html pages (#4029)
* [feature/frontend] add autocomplete + other helpful attributes to auth html pages * add autocorrect="off"
This commit is contained in:
parent
e9f6d186dc
commit
a87be80c90
2 changed files with 28 additions and 7 deletions
|
|
@ -24,11 +24,26 @@
|
|||
<form action="/auth/sign_in" method="POST">
|
||||
<div class="labelinput">
|
||||
<label for="email">Email</label>
|
||||
<input type="email" name="username" required placeholder="Please enter your email address">
|
||||
<input
|
||||
type="email"
|
||||
name="username"
|
||||
id="username"
|
||||
autocomplete="username"
|
||||
required
|
||||
autofocus
|
||||
placeholder="Please enter your email address"
|
||||
>
|
||||
</div>
|
||||
<div class="labelinput">
|
||||
<label for="password">Password</label>
|
||||
<input type="password" name="password" required placeholder="Please enter your password">
|
||||
<input
|
||||
type="password"
|
||||
name="password"
|
||||
id="password"
|
||||
autocomplete="current-password"
|
||||
required
|
||||
placeholder="Please enter your password"
|
||||
>
|
||||
</div>
|
||||
<button type="submit" class="btn btn-success">Sign in</button>
|
||||
</form>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue