|
@@ -13,7 +13,7 @@
|
|
:rules="[(val) => !!val || 'Field is required']"
|
|
:rules="[(val) => !!val || 'Field is required']"
|
|
color="blue-12"
|
|
color="blue-12"
|
|
v-model="username"
|
|
v-model="username"
|
|
- label="Enter your email/username"
|
|
|
|
|
|
+ :label="$t('enter_email')"
|
|
ref="usernameInput"
|
|
ref="usernameInput"
|
|
>
|
|
>
|
|
<template v-slot:prepend>
|
|
<template v-slot:prepend>
|
|
@@ -27,7 +27,7 @@
|
|
color="blue-12"
|
|
color="blue-12"
|
|
v-model="password"
|
|
v-model="password"
|
|
type="password"
|
|
type="password"
|
|
- label="Enter your password"
|
|
|
|
|
|
+ :label="$t('enter_password')"
|
|
ref="passwordInput"
|
|
ref="passwordInput"
|
|
>
|
|
>
|
|
<template v-slot:prepend>
|
|
<template v-slot:prepend>
|
|
@@ -42,7 +42,7 @@
|
|
error-message="Confirm password is not the same with password"
|
|
error-message="Confirm password is not the same with password"
|
|
:error="!correctConfPass"
|
|
:error="!correctConfPass"
|
|
type="password"
|
|
type="password"
|
|
- label="Confirm your password"
|
|
|
|
|
|
+ :label="$t('confirm_password')"
|
|
ref="confPasswordInput"
|
|
ref="confPasswordInput"
|
|
>
|
|
>
|
|
<template v-slot:prepend>
|
|
<template v-slot:prepend>
|