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.

26 lines
503 B

<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="/css/app.css"/>
</head>
<body>
<h1>Welcome to Run App</h1>
<% if(currentUser){ %>
<svg>
<svg id="container">
<g id="points"></g>
</svg>
</svg>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="/js/app.js"></script>
<% } else { %>
<nav>
<ul>
<li><a href="/sessions/new">Log In</a></li>
<li><a href="/users/new">Sign Up</a></li>
</ul>
</nav>
<% } %>
</body>
</html>