diff --git a/scipost/templates/scipost/reset_password.html b/scipost/templates/scipost/reset_password.html index d8704d84a1185ae01fafd430ee6a774ef3f5b09a..429ed46c71c7a1f728fdb45bd427a4b18bc62ffd 100644 --- a/scipost/templates/scipost/reset_password.html +++ b/scipost/templates/scipost/reset_password.html @@ -3,12 +3,19 @@ {% block pagetitle %}: Reset Password{% endblock pagetitle %} {% block bodysup %} -<section> + +{% load bootstrap %} + +<div class="container"> + <div class="row"> + <div class="col-md-4"> <h3>Reset password request form</h3> <form method="post"> {% csrf_token %} - {{ form.as_p }} - <button type="submit">Submit</button> + {{ form|bootstrap }} + <input class="btn btn-primary" type="submit" value="Submit" /> </form> -</section> + </div> + </div> +</div> {% endblock bodysup %}