This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% block scripts %} | |
<script type="text/javascript" charset="utf-8"> | |
$(function(){ | |
$('#submit').click(function(){ | |
var username = $("input#id_username").val(); | |
var password = $("input#id_password").val(); | |
$form = $('#login_form'); | |
$form.find('.errorlist').remove(); | |
errordata = '<ul class="errorlist"><li>There was a server error processing your login. Please try again.</li></ul>' | |
$.ajax({ |
NewerOlder