mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-06 10:29:57 +02:00
Fix #686: Added name attributes on all inputs to improve UX, especially with password managers
This commit is contained in:
parent
ca433fd90e
commit
4256d554e3
24 changed files with 29 additions and 20 deletions
|
@ -10,7 +10,7 @@
|
|||
<label>
|
||||
<translate>Search</translate>
|
||||
</label>
|
||||
<input type="text" v-model="query" :placeholder="labels.searchPlaceholder"/>
|
||||
<input type="text" name="search" v-model="query" :placeholder="labels.searchPlaceholder"/>
|
||||
</div>
|
||||
<div class="field">
|
||||
<label><translate>Ordering</translate></label>
|
||||
|
|
|
@ -51,7 +51,7 @@
|
|||
<div class="ui four wide field">
|
||||
<label><translate>Import reference</translate></label>
|
||||
<p><translate>This reference will be used to group imported files together.</translate></p>
|
||||
<input type="text" v-model="importReference" />
|
||||
<input name="import-ref" type="text" v-model="importReference" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
<div class="fields">
|
||||
<div class="field">
|
||||
<label><translate>Search</translate></label>
|
||||
<input type="text" v-model="query" :placeholder="labels.searchPlaceholder"/>
|
||||
<input name="search" type="text" v-model="query" :placeholder="labels.searchPlaceholder"/>
|
||||
</div>
|
||||
<div class="field">
|
||||
<label><translate>Ordering</translate></label>
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
<div class="">
|
||||
<div class="field">
|
||||
<label for="name"><translate>Radio name</translate></label>
|
||||
<input id="name" type="text" v-model="radioName" :placeholder="labels.placeholder.name" />
|
||||
<input id="name" name="name" type="text" v-model="radioName" :placeholder="labels.placeholder.name" />
|
||||
</div>
|
||||
<div class="field">
|
||||
<label for="description"><translate>Description</translate></label>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue