Browse Source

Prettify login page

Baptiste Jonglez 11 years ago
parent
commit
b9b564e1ff
1 changed files with 3 additions and 0 deletions
  1. 3 0
      coin/members/templates/members/login.html

+ 3 - 0
coin/members/templates/members/login.html

@@ -7,6 +7,8 @@
 {% block content %}
 
 <div class="row">
+    <h2>Connexion</h2>
+    <div class="large-6 columns">
 	{% if form.errors %}
 	<p>Your username and password didn't match. Please try again.</p>
 	{% endif %}
@@ -27,6 +29,7 @@
 	<input type="submit" value="login" />
 	<input type="hidden" name="next" value="{{ next }}" />
 	</form>
+    </div>
 </div>
 
 {% endblock %}