Implemented email verification
This commit is contained in:
@@ -15,6 +15,10 @@ export default {
|
||||
header_label: 'Create an account',
|
||||
back_button_label: 'Already have an account?',
|
||||
},
|
||||
verification: {
|
||||
header_label: 'Confirming your account',
|
||||
back_button_label: 'Back to login',
|
||||
},
|
||||
error: {
|
||||
email_in_use: 'Email already in use with different provider!',
|
||||
header_label: 'Oops! Something went wrong!',
|
||||
@@ -35,11 +39,21 @@ export default {
|
||||
},
|
||||
},
|
||||
schema: {
|
||||
message: {
|
||||
email_required: 'Invalid email address',
|
||||
password_required: `Password is required`,
|
||||
name_required: `Name is required`,
|
||||
password_min: `Password must be at least {min} characters`,
|
||||
password: {
|
||||
required: 'Password is required',
|
||||
strength: {
|
||||
acme: 'Password must contain at least a single lowercase, uppercase, digit and special character. The length must be between {min} and {max} characters.',
|
||||
},
|
||||
length: {
|
||||
min: 'Password must be at least {min} characters',
|
||||
max: 'Password must be maximally {max} characters',
|
||||
},
|
||||
},
|
||||
email: {
|
||||
required: 'Invalid email address',
|
||||
},
|
||||
name: {
|
||||
required: `Name is required`,
|
||||
},
|
||||
},
|
||||
form: {
|
||||
|
||||
Reference in New Issue
Block a user