N°2315: Forgot password sent page needed stylization

This commit is contained in:
Stephen Abello
2020-01-14 09:25:43 +01:00
parent 3718899663
commit deddb0824b
2 changed files with 15 additions and 11 deletions

View File

@@ -164,12 +164,12 @@ a:hover {
width: 100%;
}
#login-submit input.login-submit-secondary {
#login-submit input.login-submit-secondary, #forgot_pwd_sent input.forgot_pwd_done {
background-color: #e0e0e0;
color: #333a4b;
}
#login-submit input {
#login-submit input, #forgot_pwd_sent input{
background-color: #333a4b;
padding: 0.1em 1em;
border-radius: 0.25em;
@@ -227,3 +227,9 @@ a:hover {
display: inline-block;
padding: 5px;
}
#forgot_pwd_sent{
margin-left: 15%;
width: 70%;
}

View File

@@ -5,14 +5,12 @@
{% block login_content %}
<div id="login-content">
<h1>{{ 'UI:Login:ForgotPwdForm'|dict_s }}</h1>
<p>{{ 'UI:ResetPwd-EmailSent'|dict_s }}</p>
<form method="post">
<table>
<tr>
<td colspan="2" class="center v-spacer"><input type="button" onClick="window.close();" value="{{ 'UI:Button:Done'|dict_s }}"/></td>
</tr>
</table>
</form>
<div id="login-title">
<h1>{{ 'UI:Login:ForgotPwdForm'|dict_s }}</h1>
<p>{{ 'UI:ResetPwd-EmailSent'|dict_s }}</p>
</div>
<div id="forgot_pwd_sent">
<input type="button" class="forgot_pwd_done" onClick="window.close();" value="{{ 'UI:Button:Done'|dict_s }}"/>
</div>
</div>
{% endblock %}