lufi/themes/default/templates/invitations/exception.html.ep

21 lines
677 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

% # vim:set sw=4 ts=4 sts=4 ft=html.epl expandtab:
% if (stash('expired_or_deleted_invitation')) {
<div class="col s12">
<div class="card pink">
<div class="card-content white-text">
<strong><%= l('Sorry, your invitation has expired or has been deleted.') %></strong>
</div>
</div>
</div>
% }
% if (stash('invitation_not_found')) {
<div class="col s12">
<div class="card pink">
<div class="card-content white-text">
<strong><%= l('Sorry, the invitation doesnt exist. Are you sure you are on the right URL?') %></strong>
</div>
</div>
</div>
% }