blob: 6ac85c34d86adabf38272a5c3a0f87640858bccd (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{% extends "base.html" %}
{% block headline %}Login{% endblock %}
{% block title %}SUNET Meeting Tools{% endblock %}
{% 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="{{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="/myroom">Click here to Start a Meeting Now »»</a>
</div>
{% endblock %}
|