Something I'm happy with. I think.

This commit is contained in:
Eryn Wells 2012-08-17 22:19:29 -07:00
parent d748617ab3
commit 47589abe93

View file

@ -1,14 +1,34 @@
{# vim: set ft=djangohtml #} {# vim: set ft=djangohtml #}
{% extends "base.html" %} {% extends "base.html" %}
{% block body %} {% block head_css %}
<div class="row-fluid"> <style type="text/css">
<div class="span12"> .container {
<div class="hero-unit"> margin-top: 120px;
<h1>Rogue Ojii of Wales</h1> }
<p><a class="btn btn-large btn-primary" href="/login/github/">Login with </style>
GitHub</a></p>
{% endblock %}
{% block container %}
<div class="container">
<div class="row">
<div class="span8 offset2">
<div class="hero-unit">
<a class="btn btn-large btn-primary" href="{% url login %}">Login with
GitHub</a>
</div>
</div> </div>
</div> </div>
{% if error %}
<div class="row">
<div class="span8 offset2">
<div class="alert alert-error">
<i class="icon-exclamation-point"></i> {{ error }}
</div>
</div>
</div>
{% endif %}
</div> </div>
{% endblock body %} {% endblock container %}