|
|
|
% title $self->l('INVITATION');
|
|
|
|
%= include 'header'
|
|
|
|
%= include 'public_toolbar'
|
|
|
|
<div class="container-fluid">
|
|
|
|
<div class="well publicForm">
|
|
|
|
<form role="form" action="<%= $self->get_url('/invitation') %>" method="post">
|
|
|
|
<legend class="text-center">
|
|
|
|
<%=l 'INVITATION_RESPONSE' %>
|
|
|
|
</legend>
|
|
|
|
<p class="text-center">
|
|
|
|
<%=l 'CANNOT_JOIN_NOW' %>
|
|
|
|
</p>
|
|
|
|
<input name="id" type="hidden" value="<%= $inviteId %>"/>
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="response">
|
|
|
|
<%=l 'WILL_YOU_JOIN' %>
|
|
|
|
</label>
|
|
|
|
<select name="response" id="response" class="form-control">
|
|
|
|
<option value="later">
|
|
|
|
<%=l 'WILL_TRY_TO_JOIN_LATER' %>
|
|
|
|
</option>
|
|
|
|
<option value="decline" selected>
|
|
|
|
<%=l 'WONT_BE_ABLE_TO_JOIN' %>
|
|
|
|
</option>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="message">
|
|
|
|
<%=l 'MESSAGE' %>
|
|
|
|
</label>
|
|
|
|
<textarea name="message" id="message" class="form-control" rows="5" placeholder="<%=l 'DONT_WAIT_FOR_ME' %>"></textarea>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label>
|
|
|
|
<%=l 'YOU_CAN_STILL_CHANGE_YOUR_MIND' %>
|
|
|
|
</label>
|
|
|
|
<p>
|
|
|
|
<%=l 'CLICK_SEND_OR_JOIN_NOW' %>
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
<a class="btn btn-default btn-lg" role="button" href="<%= $self->get_url('/') . $room %><% if ($inviteId ne ''){ %>?token=<%= $inviteId %><% } %>">
|
|
|
|
<%=l 'JOIN_THIS_ROOM' %>
|
|
|
|
</a>
|
|
|
|
<button type="submit" class="btn btn-primary btn-lg">
|
|
|
|
<%=l 'SUBMIT' %>
|
|
|
|
</button>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
%= include 'js_common'
|
|
|
|
%= include 'footer'
|