24 lines
401 B
HTML
24 lines
401 B
HTML
|
<html>
|
||
|
<head>
|
||
|
<style>
|
||
|
body {
|
||
|
margin: 0;
|
||
|
padding-top: 8px;
|
||
|
padding-right: 8px;
|
||
|
font-size: 12px;
|
||
|
font-family: sans-serif;
|
||
|
background: #f6f6f6;
|
||
|
color: #444;
|
||
|
border-bottom: 1px solid #EEE;
|
||
|
text-align: right;
|
||
|
}
|
||
|
body a {
|
||
|
color: #449;
|
||
|
}
|
||
|
</style>
|
||
|
</style>
|
||
|
<body>
|
||
|
You are logged in as {{auth.email}}.
|
||
|
<a href="logout">Log out?</a>
|
||
|
</body>
|
||
|
</html>
|