cyberman/views/layouts/main.tt

32 lines
930 B
Plaintext
Raw Normal View History

2017-07-14 21:06:28 +02:00
<!DOCTYPE HTML>
<html lang=en>
<head>
<meta charset="utf8" />
2017-07-14 21:18:14 +02:00
<meta name="viewport" content="width=device-width" />
2017-07-15 23:08:11 +02:00
<% IF redir %>
<meta http-equiv="refresh" content="0;<% redir %>" />
<% END %>
<title>cybNIC</title>
2017-07-17 09:48:02 +02:00
<link rel="stylesheet" type="text/css" href="/css/style.css" />
2017-07-14 21:06:28 +02:00
</head>
<body>
2017-07-16 22:22:13 +02:00
<% IF vars.auth %>
<div class="toolbar">
<div class="body">
<span>
Logged in as <% vars.email | html_entity %>
</span>
<span style="float:right;">
<form action="/logout" method="POST">
2017-07-28 00:13:38 +02:00
[&nbsp;<a href="/domains" class="bracketButton">domains</a>&nbsp;]
2017-07-18 14:40:48 +02:00
[&nbsp;<a href="/account" class="bracketButton">account</a>&nbsp;]
2017-07-16 22:22:13 +02:00
[&nbsp;<button class="textButton" action="submit">log&nbsp;out</button>&nbsp;]
</form>
</span>
</div>
</div>
<% END %>
2017-07-14 21:06:28 +02:00
<% content %>
</body>
2017-07-14 19:29:52 +02:00
</html>