Fix xorg auth url
[xnet] / xnet / templates / xnet / home.html
index d73fa84..19b8ce4 100644 (file)
@@ -3,10 +3,9 @@
 
 {% block content %}
 {% if user.is_authenticated %}
-    <h3>Welcome, {{ user.get_full_name }}</h3>
-    <p><a href="{% url 'logout' %}">Log out </a></p>
+    <h1>Welcome, {{ user.get_full_name }}</h1>
 {% else %}
-    <h3>Authenticate</h3>
-        <p><a href="{% url 'xorgauth' %}?next=/" />Connect through X.org</a></p>
+    <h1>Authenticate</h1>
+        <p><a href="{% url 'authgroupex:login' %}?next=/" />Connect through X.org</a></p>
 {% endif %}
 {% endblock %}