add base template
[xnet] / xnet / templates / xnet / home.html
index d73fa84..906d372 100644 (file)
@@ -3,10 +3,10 @@
 
 {% block content %}
 {% if user.is_authenticated %}
-    <h3>Welcome, {{ user.get_full_name }}</h3>
+    <h1>Welcome, {{ user.get_full_name }}</h1>
     <p><a href="{% url 'logout' %}">Log out </a></p>
 {% else %}
-    <h3>Authenticate</h3>
+    <h1>Authenticate</h1>
         <p><a href="{% url 'xorgauth' %}?next=/" />Connect through X.org</a></p>
 {% endif %}
 {% endblock %}