Minor bugfix:

statement name, replace true/false with t/f due to postgresql, activate mustache variable for the logged in state
statment replacement since it's not possible to bind data into a string within a statement
This commit is contained in:
Tina_Azure
2023-05-08 16:40:51 +02:00
parent 7e8558989c
commit 123d98828c
4 changed files with 21 additions and 9 deletions

View File

@ -7,12 +7,15 @@
{{#LOGIN_SUCCESS}}
<div>
Login Successfull
<form action="/" method="get">
<button type="submit" class="button">Return to Freelancer Selection</button>
</form>
</div>
{{/LOGIN_SUCCESS}}
{{#LOGIN_ERROR}}
{{#LOGIN_ERROR_LOCKED_OUT}}
<div>
Login failed too often please try again in {{LOGIN_ERROR_LOCKED_OUT_MINUTES}}
Login failed too often please try again in {{LOGIN_ERROR_LOCKED_OUT_MINUTES}} Minutes
</div>
{{/LOGIN_ERROR_LOCKED_OUT}}
{{#LOGIN_ERROR_LOGIN_DATA_INVALID}}
@ -32,5 +35,6 @@
<button type="submit" class="button">Log In Error: Return to login</button>
</form>
{{/LOGIN_ERROR}}
{{> templateIncludes/freelancerLoginSignupProfileLogoutInterface.html.html}}
</body>
</html>