a mini social media app for small communities
at main 351 B view raw
1@include 'partial/header.html' 2 3@if ctx.is_logged_in() 4<h1>log out</h1> 5 6<p>you are currently logged in as: @{user.get_name()}</p> 7 8<div> 9 <p><a href="/api/user/logout">log out</a></p> 10 <hr> 11 <p><a href="/api/user/full_logout">log out of all devices</a></p> 12</div> 13@else 14<p>you need to be logged in to log out!</p> 15@end 16 17@include 'partial/footer.html'