Skip to content

Commit

Permalink
Added small styling to Forgot Password page
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Pannell committed Feb 13, 2020
1 parent c49b699 commit 4a8306a
Showing 1 changed file with 34 additions and 3 deletions.
37 changes: 34 additions & 3 deletions teamwork/templates/registration/password_reset_form.html
Original file line number Diff line number Diff line change
@@ -1,10 +1,41 @@
{% extends 'base.html' %}

{% block content %}
<h3>Forgot password</h3>
<form method="post">
{% csrf_token %}
{{ form.as_p }}
<button type="submit">Submit</button>

<div class="row">
<div class="col-md-6 clearfix">
<div class="box box-primary">
<div class="box-header with-border">
<h3 class="box-title">Forgot Password</h3>
</div>

<div class="box-body">
{% csrf_token %}
{{ form.status }}
<div class="form-group">
{{ form.as_p }}
</div>

<div class="box-footer">
<div class="pull-left">
<a href="{% url 'login' %}">
<button class="btn btn-default" type="button">
Cancel
</button>
</a>

</div>
<div class="pull-right">
<button class="btn btn-success" type="submit">
Submit
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</form>
{% endblock %}

0 comments on commit 4a8306a

Please sign in to comment.