28 lines
924 B
Text
28 lines
924 B
Text
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
<title>Planner</title>
|
|
<link rel="stylesheet" href="<%= Routes.static_path(@conn, "/css/app.css") %>"/>
|
|
<%= csrf_meta_tag() %>
|
|
<script defer type="text/javascript" src="<%= Routes.static_path(@conn, "/js/app.js") %>"></script>
|
|
</head>
|
|
<body>
|
|
<h1>Planner</h1>
|
|
<ul>
|
|
<%= if @current_user do %>
|
|
<li><%= @current_user.email %></li>
|
|
<li><%= link "Settings", to: Routes.user_settings_path(@conn, :edit) %></li>
|
|
<li><%= link "Logout", to: Routes.user_session_path(@conn, :delete), method: :delete %></li>
|
|
<% else %>
|
|
<li><%= link "Login", to: Routes.user_session_path(@conn, :new) %></li>
|
|
<% end %>
|
|
</ul>
|
|
|
|
<hr>
|
|
|
|
<%= @inner_content %>
|
|
</body>
|
|
</html>
|