diff options
Diffstat (limited to 'src/templates/apps')
-rw-r--r-- | src/templates/apps/auth/login.html | 9 | ||||
-rw-r--r-- | src/templates/apps/room/list.html | 14 |
2 files changed, 14 insertions, 9 deletions
diff --git a/src/templates/apps/auth/login.html b/src/templates/apps/auth/login.html new file mode 100644 index 0000000..b5302a7 --- /dev/null +++ b/src/templates/apps/auth/login.html @@ -0,0 +1,9 @@ +{% extends "base.html" %} +{% load prefix %} +{% block headline %}Login{% endblock %} +{% block title %}SUNET Meeting Tools{% endblock %} +{% block content %} +<h2>Welcome!</h2> +<p>This is a technology preview of the SUNET Meeting Tools. Contact Johnny or Marcus for more info!</p> +<div class="button"><a href="{% prefix %}/accounts/login-federated">Login</a></div> +{% endblock %}
\ No newline at end of file diff --git a/src/templates/apps/room/list.html b/src/templates/apps/room/list.html index ac78f3c..203d67b 100644 --- a/src/templates/apps/room/list.html +++ b/src/templates/apps/room/list.html @@ -14,7 +14,7 @@ }); {% endblock %} {% block content %} - <h1>Your Rooms</h1> + <h1>Your meeting rooms</h1> {% if rooms %} <div id="rooms"> {% for r in rooms %} @@ -23,12 +23,10 @@ <div> <p>Created by {{r.creator}} {{r.timecreated|datehumanize}}.</p> <p>Meeting room URL: <a href="{{r|roomurl}}">{{r|roomurl}}</a></p> - <div class="buttons ilist"> - <ul> + <ul class="ilist"> <li><div class="button"><a href="{% prefix %}/room/{{r.id}}/modify">Modify Room</a></li> <li><div class="button"><a href="{% prefix %}/room/{{r.id}}/delete">Delete Room</a></li> </ul> - </div> </div> </div> {% endfor %} @@ -37,9 +35,7 @@ <p>You don't have any rooms listed right now...</p> {% endif %} <br/> - <div class="buttons"> - <ul> - <li><div class="button"><a href="{% prefix %}/room/create">Create a new room</a></div></li> - </ul> - </div> + <ul class="ilist"> + <li><div class="button"><a href="{% prefix %}/room/create">Create a new room</a></div></li> + </ul> {% endblock %}
\ No newline at end of file |