summaryrefslogtreecommitdiff
path: root/templates/apps
diff options
context:
space:
mode:
authorLeif Johansson <leifj@sunet.se>2012-10-09 08:40:44 +0200
committerLeif Johansson <leifj@sunet.se>2012-10-09 08:42:10 +0200
commitf3b0dbaa669159ec880848f7b70220791a1427fa (patch)
treebf4ba4a791789b58fda9d120e9e08146427a88fb /templates/apps
parent2e2267171cf83acf2002fcc2c36ffb55b380a2ba (diff)
- users own room
Diffstat (limited to 'templates/apps')
-rw-r--r--templates/apps/auth/login.html4
-rw-r--r--templates/apps/room/launch.html5
2 files changed, 6 insertions, 3 deletions
diff --git a/templates/apps/auth/login.html b/templates/apps/auth/login.html
index e72e73a..6ac85c3 100644
--- a/templates/apps/auth/login.html
+++ b/templates/apps/auth/login.html
@@ -4,8 +4,8 @@
{% block content %}
<div class="hero-unit">
<h1>Online Meetings</h1>
- <p>Welcome to the meeting tools. Either <a class="btn btn-small btn-primary" href="/accounts/login-federated">Login</a> to manage
+ <p>Welcome to the meeting tools. Either <a class="btn btn-small btn-primary" href="{{LOGIN_URL}}?next=/rooms">Login</a> to manage
your meeting rooms and recordings, or ...</p>
- <a class="btn btn-large btn-success pull-right" href="/accounts/login-federated?next=/user/myroom">Click here to Start a Meeting Now &raquo;&raquo;</a>
+ <a class="btn btn-large btn-success pull-right" href="/myroom">Click here to Start a Meeting Now &raquo;&raquo;</a>
</div>
{% endblock %} \ No newline at end of file
diff --git a/templates/apps/room/launch.html b/templates/apps/room/launch.html
index 54b30c4..a7b495c 100644
--- a/templates/apps/room/launch.html
+++ b/templates/apps/room/launch.html
@@ -18,12 +18,15 @@
If you are hosting this meeting and are comfortable with the Adobe Connect software you may press 'Enter as Host' below to become the first host.
{% endif %}
</p>
+ <p>
+ The public URL of this room is <code>{{BASE_URL}}go/{{room.id}}</code>. Give this to other participants.
+ </p>
</div>
</div>
<br/>
<div>
<form id="launch" method="GET">
- <a class="btn btn-large" href="/rooms#{{room.id}}">Cancel</a>
+ <button class="btn btn-large cancel" href="#">Cancel</button>
{%if room.nhosts == 0 %}
<a class="btn btn-large btn-success submitter" data-form="#launch" href="/promote/{{room.id}}">Enter as Host</a>
{% endif %}