16 lines
425 B
Text
16 lines
425 B
Text
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title><%= _("Vote") %></title>
|
|
</head>
|
|
<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>
|