index.html 488 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Base</title>
  5. <script src="/static/bower_components/jquery/dist/jquery.js"></script> <!-- JavaScript -->
  6. </head>
  7. <body>
  8. <h1>Api Example</h1>
  9. <strong>{{ boldmessage }}</strong><br />
  10. </body>
  11. {% if user.is_authenticated %}
  12. <a href="/hackathon/logout/">Logout</a><br />
  13. {% else %}
  14. <a href="/hackathon/register/">Register Here</a><br />
  15. <a href="/hackathon/login/">Login</a><br />
  16. {% endif %}
  17. </html>