{% extends 'noel/base.html' %}
{% load crispy_forms_tags %}

{% block extra_head %}
<link rel="stylesheet" href="/static/css/noel/inner.css" type="text/css" />
<link rel="stylesheet" href="/static/css/register.css" type="text/css" />
<!-- note that there's also blue.uni-form.css and dark.uni-form.css available if you want to try changing defaults up -->
<link rel="stylesheet" href="/static/uni_form/uni-form.css" type="text/css" />
<link rel="stylesheet" href="/static/uni_form/default.uni-form.css" type="text/css" />
<!-- uni-form JS library, optional -->
<script src="/static/uni_form/uni-form.jquery.js" type="text/javascript"></script>
<script type="text/javascript">
  $(function(){
    $('form.uniForm').uniform();
  });
</script>
{% endblock %}


{% block content %}
<div id="centerInner">
   	<div id="shadow">
   	</div>
    <div id="searchContainer">
        <form id="formItf" action="" class="uniForm" method="POST">
            <table>
                {{ form|crispy }}                
            </table>
        </form>
    </div>

</div>
{% endblock %}