29 lines
881 B
Text
29 lines
881 B
Text
<!DOCTYPE html>
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Vedia</title>
|
|
<script src="/chartkick.js"></script>
|
|
<script src="/Chart.bundle.js"></script>
|
|
<link rel="stylesheet" href="/style.css">
|
|
</head>
|
|
<script>
|
|
fetch('/timezone', {
|
|
method: 'post',
|
|
headers: {
|
|
'Content-Type': 'application/json'
|
|
},
|
|
body: JSON.stringify({ timezone: Intl.DateTimeFormat().resolvedOptions().timeZone })
|
|
});
|
|
</script>
|
|
<body>
|
|
<% if current_user %>
|
|
<p><%= _("Logged in as %{email}.") % { email: current_user.email } %> <a href="/logout"><%= _("Logout") %></a></p>
|
|
<p><a href="/"><%= _("Home") %></a></p>
|
|
<% else %>
|
|
<p><a href="/login"><%= _("Login") %></a></p>
|
|
<% end %>
|
|
<%= yield %>
|
|
</body>
|
|
</html>
|