Files @ 3118e4c11c59
Branch filter:

Location: symposion_app/pinaxcon/templates/registrasion/profile_form.html

Christopher Neugebauer
Friday fixes (#36)

* Monkey-patches a version of send_email that allows BCCs into the django accounts signup process. wtf, etc.

* Adds alt-text to site header

* Favicon.
{% extends "registrasion/base.html" %}
{% load bootstrap %}

{% block body %}

  <h1>Your profile</h1>

  <p>These details will appear on your badge, your invoices, and will be used
  to order catered food at the conference.</p>

  <form method="post" action="">
    {% csrf_token %}

    <table>
        {{ form|bootstrap }}
    </table>

    <div class="form-actions">
        <input class="btn btn-primary" type="submit" value="Save" />
    </div>
  </form>


{% endblock %}