Skip to content
Snippets Groups Projects
Verified Commit 70a20666 authored by Andrej Ramašeuski's avatar Andrej Ramašeuski
Browse files

Chybova stranka pro neprihlasene

parent 97df5315
No related branches found
No related tags found
No related merge requests found
Pipeline #18803 passed
0.13.0
0.14.0
......@@ -134,6 +134,7 @@ sub startup( $self ) {
$r->get('/')->to(cb => sub { shift->render('index'); });
$r->get('/meets/:id')->requires(authenticated => 1)->to('Meets#meet');
$r->get('/meets/:id')->to(cb => sub { shift->render('unauthorized'); });
$r->get('/guest/:token')->to('Invites#meet');
$r->websocket('/ws')->to('Websockets#main');
......
......@@ -9,9 +9,7 @@
</div>
<div>
<h1 class="head-alt-xl">Opravdu bezpečný jitsi</h1>
<h1 class="head-alt-xl text-blue-300">Vždy víš kdo tě poslouchá</h1>
<h1 class="head-alt-xl text-green-400">Žádní náhodní moderatoři</h1>
<h1 class="head-alt-xl">Bezpečný jitsi jenom pro ověřené účastníky</h1>
<h1 class="head-alt-lg text-red-600 pt-10">Testovací provoz</h1>
</div>
</div>
......
% layout 'default';
<h1 class="head-alt-xl">Aktuálně nemáte oprávnění pro přístup do této místnosti</h1>
<a href="<%= oidc->authorize %>">
<button class="btn btn--icon btn--grey-125 btn--hoveractive">
<div class="btn__body-wrap">
<div class="btn__body">Přihlásit se</div>
<div class="btn__icon">
<i class="ico--pirati"></i>
</div>
</div>
</button>
</a>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment