df70b4ce54331d3922355422cdaded67af83f363
[myslice.git] / portal / templates / pass_reset.html
1 {% extends "layout-unfold1.html" %}
2
3 {% block head %}
4 {{ wizard.form.media }}
5 {% endblock %}
6
7 {% block unfold_main %}
8
9 <link rel="stylesheet" type="text/css" href="{{STATIC_URL}}/css/onelab.css" />
10 <div class="onelab-title well-lg">
11   <h2>Onelab Password Reset</h2>
12 </div>
13
14 <!-- no hint for this form, moreover we need more space to write stuff down
15      so we use a 3-6-3 layout -->
16 <div class='well'>
17   <form class="cmxform form-horizontal" id="commentForm" action="" method="post" role="form">{% csrf_token %}
18   <fieldset>
19     {% for field in form %}
20     <div class="form-group">
21       <label for="{{ field.html_name }}" class="col-xs-3 control-label">{{ field.label }}</label>
22       <div class="col-xs-6"> {{ field.errors }} {{ field }} <p class="form-hint">{{ field.help_text }}</p> </div>
23     </div>
24     {% endfor %}
25     <button class="submit btn btn-default col-xs-12" type="submit">Reset My Password</button>
26   </fieldset>
27   </form>
28 </div>
29 {% endblock %}
30