Commit 506a5252 by John Jarvis

converting password_reset_confirm back to django template from mako

parent f5aaf309
<%inherit file="main.html" />
{% load compressed %}
{% load staticfiles %}
<!DOCTYPE html>
<html>
<head>
<%namespace name='static' file='static_content.html'/>
<title>Reset Your edX Password</title>
<%block name="title"><title>Reset Your edX Password</title></%block>
{% compressed_css 'application' %}
<!--[if lt IE 9]>
<script src="{% static 'js/html5shiv.js' %}"></script>
<![endif]-->
<%block name="js_extra">
<script type="text/javascript">
$(function() {
......@@ -28,7 +35,10 @@
});
});
</script>
</%block>
</head>
<body>
<section class="passwordreset container">
<section class="introduction">
......@@ -43,7 +53,7 @@
<h2 class="is-hidden">Password Reset Form</h2>
</header>
<form role="form" id="passwordreset-form" method="post" data-remote="true" action="">
<form role="form" id="passwordreset-form" method="post" data-remote="true" action="">{% csrf_token %}
<!-- status messages -->
<div role="alert" class="status message is-hidden">
<h3 class="message-title">We're sorry, edX enrollment is not available in your region</h3>
......@@ -108,4 +118,4 @@
<p>View our <a href="#">help section for contact information and answers to commonly asked questions</a></p>
</div>
</aside>
</section>
\ No newline at end of file
</section>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment