22 lines
468 B
Plaintext
22 lines
468 B
Plaintext
% # vim:set sw=4 ts=4 sts=4 ft=html.epl expandtab:
|
|
% if (defined stash('msg')) {
|
|
<div>
|
|
<strong>
|
|
<%= stash('msg') %>
|
|
</strong>
|
|
</div>
|
|
% } else {
|
|
<div>
|
|
<p>
|
|
<strong>
|
|
<%= l('You have been successfully logged out.') %>
|
|
</strong>
|
|
</p>
|
|
<div>
|
|
<a href="<%= url_for('login') %>">
|
|
<%= l('Signin') %>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
% }
|