Fixed labels on welcome page

This commit is contained in:
Jorys Paulin 2021-08-18 10:33:24 +02:00
parent 9e224987f7
commit 556a6aaf33
No known key found for this signature in database
GPG Key ID: 83924762BA299496

View File

@ -14,27 +14,30 @@
</div>
<form @submit.prevent="save" class="card p-4" style="width: 100%">
<div class="mb-2">
<label for="" class="form-label">Username: </label>
<label for="usernameInput" class="form-label">Username: </label>
<input
type="text"
class="form-control"
id="usernameInput"
v-model="passwordData.newUsername"
/>
</div>
<div class="mb-2">
<label for="" class="form-label">Password: </label>
<label for="passwordInput" class="form-label">Password: </label>
<input
type="password"
class="form-control"
id="passwordInput"
v-model="passwordData.newPassword"
required
/>
</div>
<div class="mb-2">
<label for="" class="form-label">Password: </label>
<label for="confirmPasswordInput" class="form-label">Password: </label>
<input
type="password"
class="form-control"
id="confirmPasswordInput"
v-model="passwordData.confirmNewPassword"
required
/>