This commit is contained in:
2020-03-09 22:02:21 +00:00
parent 93bf22a325
commit fa99ffb5a1
3 changed files with 8 additions and 3 deletions

View File

@@ -44,8 +44,7 @@ CURRENT TODOs
@@@@@@@@@@@ ROADMAP STAGE 1 and 2:
todo: expose translation setting for user to home-user-settings
- document
todo: User settings && password change documentation

View File

@@ -19,6 +19,8 @@
<!-- {{ formState }} -->
<v-col cols="12">
<v-text-field
name="username"
id="username"
v-model="obj.loginName"
:readonly="formState.readOnly"
prepend-icon="fa-user"
@@ -37,6 +39,8 @@
<v-col cols="12">
<v-text-field
name="password"
id="password"
v-model="obj.oldPassword"
:readonly="formState.readOnly"
:append-outer-icon="reveal ? 'fa-eye' : 'fa-eye-slash'"

View File

@@ -19,6 +19,7 @@
<v-col cols="12" md="7">
<v-text-field
name="username"
id="username"
v-model="input.username"
prepend-icon="fa-user"
label="User"
@@ -35,6 +36,7 @@
<v-col cols="12" md="7">
<v-text-field
name="password"
id="password"
v-model="input.password"
:append-outer-icon="reveal ? 'fa-eye' : 'fa-eye-slash'"
prepend-icon="fa-key"
@@ -46,7 +48,7 @@
></v-text-field>
</v-col>
<v-col cols="12" md="7" mt-1 class="text-center">
<v-btn color="primary" v-on:click="login()">
<v-btn color="primary" v-on:click="login()" value="LOGIN">
<v-icon>fa-sign-in-alt</v-icon>
</v-btn>
</v-col>