Fix #686: Added name attributes on all inputs to improve UX, especially with password managers

This commit is contained in:
Eliot Berriot 2019-01-26 18:06:19 +01:00
parent ca433fd90e
commit 4256d554e3
No known key found for this signature in database
GPG key ID: DD6965E2476E5C27
24 changed files with 29 additions and 20 deletions

View file

@ -20,6 +20,7 @@
<label><translate>Username</translate></label>
<input
ref="username"
name="username"
required
type="text"
autofocus
@ -30,6 +31,7 @@
<label><translate>Email</translate></label>
<input
ref="email"
name="email"
required
type="email"
:placeholder="labels.emailPlaceholder"
@ -44,6 +46,7 @@
<input
required
type="text"
name="invitation"
:placeholder="labels.placeholder"
v-model="invitation">
</div>