🌍 i18n for ResetPassword

ref #43
This commit is contained in:
2021-02-07 13:11:08 +01:00
parent 8b2f1965e2
commit 428a8a10ff
2 changed files with 18 additions and 9 deletions

View File

@@ -9,13 +9,13 @@
function set_new_password() {
if(password.trim() !== ""){
Toastify({
text: "Password Reset in Progress...",
text: $_('password-reset-in-progress'),
duration: 3500,
}).showToast();
AuthService.authControllerResetPassword(params.resetkey,{ password })
.then((resp) => {
Toastify({
text: "Password Reset successful!",
text: $_('password-reset-successful'),
duration: 3500,
}).showToast();
state="reset_success";
@@ -25,7 +25,7 @@
});
} else {
Toastify({
text: "Please provide a password...",
text: $_('please-provide-a-password'),
duration: 3500,
}).showToast();
}
@@ -40,17 +40,17 @@
{$_('application_name')}
</p>
<p class="mt-2 mb-2 text-sm text-center text-gray-900 font-bold">
Successful password reset!
{$_('successful-password-reset')}
</p>
<p class="mt-2 mb-2 text-sm text-center text-gray-900">
You can now use your new password to log in to your account! 🎉
{$_('you-can-now-use-your-new-password-to-log-in-to-your-account')}
</p>
<div class="mt-6">
<div class="mt-6">
<a
href="/login/"
class="text-center relative block w-full py-2 px-3 border border-transparent rounded-md text-white font-semibold bg-gray-800 hover:bg-gray-700 focus:bg-gray-900 focus:outline-none focus:shadow-outline sm:text-sm">
Go To Login
{$_('go-to-login')}
</a>
</div>
</div>
@@ -64,17 +64,17 @@
{$_('application_name')}
</p>
<p class="mt-2 mb-2 text-sm text-center text-gray-900 font-bold">
Password reset failed!
{$_('password-reset-failed')}
</p>
<p class="mt-2 mb-2 text-sm text-center text-gray-900">
Please request a new reset mail...
{$_('please-request-a-new-reset-mail')}
</p>
<div class="mt-6">
<div class="mt-6">
<a
href="/forgot_password/"
class="text-center relative block w-full py-2 px-3 border border-transparent rounded-md text-white font-semibold bg-gray-800 hover:bg-gray-700 focus:bg-gray-900 focus:outline-none focus:shadow-outline sm:text-sm">
Request a new reset mail
{$_('request-a-new-reset-mail')}
</a>
</div>
</div>