2024-12-20 17:18:31 -05:00
|
|
|
<!-- views/partials/nav.ejs -->
|
2024-12-28 19:31:45 -05:00
|
|
|
<div class="nav">
|
|
|
|
|
Falls on Fire<br>
|
2025-03-04 21:34:18 -05:00
|
|
|
<a href="/buy">Buy Tickets</a><br>
|
|
|
|
|
<%if (typeof username!='undefined' && username) {%>
|
2024-12-28 19:31:45 -05:00
|
|
|
<a href="/mytickets">View My Tickets</a><br>
|
2025-03-04 21:34:18 -05:00
|
|
|
<%}%>
|
2024-12-28 19:31:45 -05:00
|
|
|
<%if (typeof superuser!='undefined' && superuser) {%>
|
|
|
|
|
<a href="/camps">View Camps (Admin)</a><br>
|
|
|
|
|
<a href="/settings">Settings (Admin)</a><br>
|
2024-12-28 00:07:12 -05:00
|
|
|
<%}%>
|
2025-03-03 21:36:38 -05:00
|
|
|
<%if (typeof username!='undefined' && username) {%>
|
|
|
|
|
<a href="/changepassword">Change Password</a><br>
|
2024-12-28 19:31:45 -05:00
|
|
|
<a href="/logout">Log Out</a><br>
|
2025-03-03 21:36:38 -05:00
|
|
|
<%} else {%>
|
|
|
|
|
<a href="/create">Create Account</a><br>
|
|
|
|
|
<a href="/login">Log In</a><br>
|
|
|
|
|
<%}%>
|
2024-12-28 19:31:45 -05:00
|
|
|
</div>
|
|
|
|
|
<div class="message" id="message">
|
2025-03-03 21:36:38 -05:00
|
|
|
<% if (typeof commonData.message !== 'undefined') { %>
|
|
|
|
|
<p><%= commonData.message %></p>
|
2024-12-28 19:31:45 -05:00
|
|
|
<% } %>
|
|
|
|
|
</div>
|
2025-03-03 21:36:38 -05:00
|
|
|
<% if (commonData.error) { %>
|
|
|
|
|
<div id="errorModal">
|
|
|
|
|
<p><%= commonData.error %></p>
|
|
|
|
|
<button onclick="document.getElementById('errorModal').style.display='none'">Close</button>
|
|
|
|
|
</div>
|
|
|
|
|
<% } %>
|