re added forget password link back and did some styling changes on it
This commit is contained in:
@@ -1,7 +1,26 @@
|
|||||||
{% extends 'base.html' %}
|
{% extends 'base.html' %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
|
||||||
|
<style>
|
||||||
|
body{
|
||||||
|
margin-left: 500px;
|
||||||
|
margin-top: 80px;
|
||||||
|
margin-right: 500px;
|
||||||
|
border: 3px solid black;
|
||||||
|
padding: 10px;
|
||||||
|
border-radius: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
button{
|
||||||
|
margin-left: 250px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emailbox{
|
||||||
|
margin-left: 170px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
<h2>Forgotten you password just enter your email below and you'll be sent a link to reset your password</h2>
|
<h2>Forgotten you password just enter your email below and you'll be sent a link to reset your password</h2>
|
||||||
<p style="color: gray; text-decoration: underline;">This page is just a placeholder at the moment not functional</p>
|
<p style="color: gray; text-decoration: underline;">This page is just a placeholder at the moment not functional</p>
|
||||||
<p>Enter email here:<input type="email" id="email" name="email" required><br><br></p>
|
<p class="emailbox">Enter email here: <input type="email" id="email" name="email" required><br><br></p>
|
||||||
<button type="resetpassword" style="font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; border-color: gray; border-radius: 4px; border-width: 4px;">Send reset email</button>
|
<button type="resetpassword" style="font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; border-color: gray; border-radius: 4px; border-width: 4px;">Send reset email</button>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
@@ -22,6 +22,6 @@
|
|||||||
|
|
||||||
<button type="submit" style="font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; border-color: gray; border-radius: 4px; border-width: 4px; margin-bottom: 20px;">Sign In</button>
|
<button type="submit" style="font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; border-color: gray; border-radius: 4px; border-width: 4px; margin-bottom: 20px;">Sign In</button>
|
||||||
<p>Don't have an account? <a style="text-decoration: none;" href="{{ url_for('signup') }}">Create one</a></p>
|
<p>Don't have an account? <a style="text-decoration: none;" href="{{ url_for('signup') }}">Create one</a></p>
|
||||||
<!--<p>Forgot password? <a style="text-decoration: none;" href="{{ url_for('resetpassword') }}">Reset Password</a></p> -->
|
<p>Forgot password? <a style="text-decoration: none;" href="{{ url_for('resetpassword') }}">Reset Password</a></p>
|
||||||
</form>
|
</form>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
Reference in New Issue
Block a user