Merge pull request #395 from gjedlicska/password_managers

frontend fix(registration and password reset)
This commit is contained in:
Gergő Jedlicska
2021-09-08 15:30:55 +02:00
committed by GitHub
3 changed files with 11 additions and 0 deletions
+1
View File
@@ -16,3 +16,4 @@ test-queries
packages/viewer/example/*.js
packages/viewer/example/*.js.map
packages/frontend/schema.graphql
.tool-versions
@@ -47,6 +47,10 @@
filled
single-line
prepend-icon="mdi-email"
id="email"
name="email"
type="email"
autocomplete="username"
/>
</v-col>
<v-col cols="12" sm="12">
@@ -76,6 +80,8 @@
v-model="form.password"
label="password"
type="password"
autocomplete="new-password"
id="new-password"
:rules="validation.passwordRules"
filled
single-line
@@ -89,6 +95,8 @@
v-model="form.passwordConf"
label="confirm password"
type="password"
autocomplete="new-password"
id="confirm-password"
:rules="validation.passwordRules"
filled
single-line
@@ -22,6 +22,8 @@
v-model="form.password"
label="new password"
type="password"
autocomplete="new-password"
id="new-password"
:rules="validation.passwordRules"
filled
single-line