| 12345678910111213141516171819202122232425 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>Base</title>
- <script src="/static/bower_components/jquery/dist/jquery.js"></script> <!-- JavaScript -->
- </head>
- <body>
- <h1>Api Example</h1>
- <strong>{{ boldmessage }}</strong><br />
- </body>
- {% if user.is_authenticated %}
- <a href="/hackathon/logout/">Logout</a><br />
- {% else %}
- <a href="/hackathon/register/">Register Here</a><br />
- <a href="/hackathon/login/">Login</a><br />
- {% endif %}
- </html>
|