converting password_reset_confirm back to django template from mako
This commit is contained in:
@@ -1,10 +1,17 @@
|
||||
<%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>
|
||||
</section>
|
||||
|
||||
Reference in New Issue
Block a user