You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1021 B
39 lines
1021 B
<!DOCTYPE html>
|
|
<html lang="en" dir="ltr">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title></title>
|
|
</head>
|
|
<body>
|
|
<h1>
|
|
<% if(currentUser){ %>
|
|
Welcome <%=currentUser.username%>!
|
|
<% } else { %>
|
|
Welcome!
|
|
<% } %>
|
|
</h1>
|
|
<nav>
|
|
<ul>
|
|
<li>
|
|
<a href="/sessions/new">Log In</a>
|
|
</li>
|
|
<li>
|
|
<a href="/users/new">Register</a>
|
|
</li>
|
|
<% if(currentUser){ %>
|
|
<li>
|
|
<form action="/sessions?_method=DELETE" method="POST">
|
|
<input type="submit" value="Logout">
|
|
</form>
|
|
</li>
|
|
<% } %>
|
|
</ul>
|
|
</nav>
|
|
<% if(currentUser){ %>
|
|
<main>
|
|
Go to the <a href="/app">app</a>
|
|
</main>
|
|
<% } %>
|
|
</body>
|
|
</html>
|