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.
22 lines
395 B
22 lines
395 B
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
<h1>
|
|
Welcome to Run Tracker
|
|
<% if(currentUser) { %>
|
|
<%=currentUser.username%>
|
|
<% } %>
|
|
</h1>
|
|
<nav>
|
|
<ul>
|
|
<% if(currentUser) { %>
|
|
<li><a href="/app.html">View The App</a></li>
|
|
<% } else { %>
|
|
<li><a href="/users/new">Sign Up</a></li>
|
|
<li><a href="/logins/new">Log In</a></li>
|
|
<% } %>
|
|
</ul>
|
|
</nav>
|
|
</body>
|
|
</html>
|