-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement forgotten password funcitonality (#997)
* forgotten password * change password * display link in login form that redirect to forgotten password * changed API endpoint * translation
- Loading branch information
1 parent
c9a0419
commit 31fbc63
Showing
7 changed files
with
104 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,11 @@ | |
"alerts": { | ||
"welcome": "Добре дошли!", | ||
"invalid-login": "Грешен потребител / парола.", | ||
"re-login": "Моля, влезте отново в профила си." | ||
"re-login": "Моля, влезте отново в профила си.", | ||
"forgotten-password-error": "Потребителя не е намерен, моля опитайте отново!", | ||
"forgotten-password-success": "Моля проверете имейла си!", | ||
"change-password-error": "Възникна грешка, моля опитайте отново или се свържете с [email protected]!", | ||
"change-password-success": "Може да се логнете с новата парола." | ||
}, | ||
"cta": { | ||
"login": "Вход", | ||
|
@@ -28,6 +32,7 @@ | |
}, | ||
"account": { | ||
"email": "Email", | ||
"forgotten-password": "Забравена парола", | ||
"new-password": "Нова парола", | ||
"confirm-password": "Потвърди парола", | ||
"previous-password": "Стара парола", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,11 @@ | |
"alerts": { | ||
"welcome": "Welcome!", | ||
"invalid-login": "Wrong username / password.", | ||
"re-login": "Please login into your account." | ||
"re-login": "Please login into your account.", | ||
"forgotten-password-error": "User not found, please try again!", | ||
"forgotten-password-success": "Please check your email!", | ||
"change-password-error": " Тhere was an error, try again or contact [email protected]!", | ||
"change-password-success": "You can log in with the new password." | ||
}, | ||
"cta": { | ||
"login": "Login", | ||
|
@@ -28,6 +32,7 @@ | |
}, | ||
"account": { | ||
"email": "Email", | ||
"forgotten-password": "Forgotten password", | ||
"new-password": "New password", | ||
"confirm-password": "Confirm password", | ||
"previous-password": "Previous password", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters