past3d/users/templates/users/signup.html

34 lines
764 B
HTML

{% extends "base.html" %}
{% block title %} Sign up{% endblock %}
{% block headeraddons %}
<script src="{{STATIC_URL}}js/jquery-1.10.2.min.js"></script>
{% endblock %}
{% block content %}
<div id="content">
<div id="prompt">
<!-- if IE without GCF, prompt goes here -->
</div>
<h1>Sign up</h1>
<div class="pure-g-r">
<div class="pure-u-2-3">
<div class="textcontainer">
{% if user.is_authenticated %}
You are alerady logged in, why in the world would you want to sign up ?
{% else %}
{% include 'form.html' with button_text='sign up' %}
{% endif %}
</div>
</div>
<div class="pure-u-1-3">
{% include 'pastebin/latest_geometries.html' %}
</div>
</div>
</div>
{% endblock %}