feat(user): adds registration form template

This commit is contained in:
2024-11-05 00:26:12 -03:00
parent 2b43da4504
commit 1f3feece2f
6 changed files with 149 additions and 4 deletions

View File

@@ -0,0 +1,7 @@
FORM_ERRORS = {
'REQUIRED': "This field is required.",
'PASSWORD_LENGTH': 'It must be at least 6 characters long.',
'VALID_EMAIL': 'Enter a valid email address.',
'PHONE_NUMBER_FORMAT': 'It can be prefixed with the "+" sign and may only contain numbers after it.',
'NAME_FORMAT': 'It must be at least 2 characters long, it may only contain letters.'
}