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

19 lines
470 B
Plaintext
Raw 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.

<section class="box">
% if (stash('expired_or_deleted_invitation')) {
<div class="message is-danger">
<div class="message-body">
<%= l('Sorry, your invitation has expired or has been deleted.') %>
</div>
</div>
% }
% if (stash('invitation_not_found')) {
<div class="message is-danger">
<div class="message-body">
<%= l('Sorry, the invitation doesnt exist. Are you sure you are on the right URL?') %>
</div>
</div>
% }
</section>