|
|
@ -3,21 +3,35 @@ |
|
|
|
%= include 'public_toolbar' |
|
|
|
%= include 'public_toolbar' |
|
|
|
<div class="container-fluid"> |
|
|
|
<div class="container-fluid"> |
|
|
|
<div class="jumbotron alert-danger"> |
|
|
|
<div class="jumbotron alert-danger"> |
|
|
|
<h2><%=l 'ERROR_OCCURRED' %></h2> |
|
|
|
<h2> |
|
|
|
<p><%= $msg %></p> |
|
|
|
<%=l 'ERROR_OCCURRED' %> |
|
|
|
|
|
|
|
</h2> |
|
|
|
|
|
|
|
<p> |
|
|
|
|
|
|
|
<%= $msg %> |
|
|
|
|
|
|
|
</p> |
|
|
|
<div class="row"> |
|
|
|
<div class="row"> |
|
|
|
<div class="col-sm-6 col-lg-4 col-xl-3"> |
|
|
|
<div class="col-sm-6 col-lg-4 col-xl-3"> |
|
|
|
<a class="btn btn-primary btn-lg btn-full" role="button" href="<%= $self->get_url('/') %>"><%=l 'BACK_TO_MAIN_MENU' %></a> |
|
|
|
<a class="btn btn-primary btn-lg btn-full" role="button" href="<%= $self->get_url('/') %>"> |
|
|
|
|
|
|
|
<%=l 'BACK_TO_MAIN_MENU' %> |
|
|
|
|
|
|
|
</a> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div class="col-sm-6 col-lg-4 col-xl-3"> |
|
|
|
<div class="col-sm-6 col-lg-4 col-xl-3"> |
|
|
|
<% if ($err eq 'ERROR_NAME_CONFLICT'){ %> |
|
|
|
<% if ($err eq 'ERROR_NAME_CONFLICT'){ %> |
|
|
|
<a class="btn btn-default btn-lg btn-full" role="button" href="<%= $self->get_url('/') . $room %>"><%=l 'JOIN_THIS_ROOM' %></a> |
|
|
|
<a class="btn btn-default btn-lg btn-full" role="button" href="<%= $self->get_url('/') . $room %>"> |
|
|
|
|
|
|
|
<%=l 'JOIN_THIS_ROOM' %> |
|
|
|
|
|
|
|
</a> |
|
|
|
<% } elsif ($err eq 'WRONG_PASSWORD'){ %> |
|
|
|
<% } elsif ($err eq 'WRONG_PASSWORD'){ %> |
|
|
|
<a class="btn btn-default btn-lg btn-full" role="button" href="<%= $self->get_url('/password') . '/' . $room %>"><%=l 'TRY_AGAIN' %></a> |
|
|
|
<a class="btn btn-default btn-lg btn-full" role="button" href="<%= $self->get_url('/password') . '/' . $room %>"> |
|
|
|
|
|
|
|
<%=l 'TRY_AGAIN' %> |
|
|
|
|
|
|
|
</a> |
|
|
|
<% } elsif ($err eq 'ERROR_ROOM_s_LOCKED' && stash 'ownerPass'){ %> |
|
|
|
<% } elsif ($err eq 'ERROR_ROOM_s_LOCKED' && stash 'ownerPass'){ %> |
|
|
|
<a class="btn btn-default btn-lg btn-full" role="button" href="<%= $self->get_url('/password') . '/' . $room %>"><%=l 'AUTH_IF_OWNER' %></a> |
|
|
|
<a class="btn btn-default btn-lg btn-full" role="button" href="<%= $self->get_url('/password') . '/' . $room %>"> |
|
|
|
|
|
|
|
<%=l 'AUTH_IF_OWNER' %> |
|
|
|
|
|
|
|
</a> |
|
|
|
<% } elsif ($err eq 'ERROR_ROOM_s_DOESNT_EXIST'){ %> |
|
|
|
<% } elsif ($err eq 'ERROR_ROOM_s_DOESNT_EXIST'){ %> |
|
|
|
<button class="btn btn-default btn-lg btn-full" style="width: 100%" type="submit" form="createRoom"><%=l 'CREATE_THIS_ROOM' %></button> |
|
|
|
<button class="btn btn-default btn-lg btn-full" style="width: 100%" type="submit" form="createRoom"> |
|
|
|
|
|
|
|
<%=l 'CREATE_THIS_ROOM' %> |
|
|
|
|
|
|
|
</button> |
|
|
|
<% } %> |
|
|
|
<% } %> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|