mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2025-07-24 15:29:36 +02:00
15 lines
434 B
HTML
15 lines
434 B
HTML
{% extends "base.html" %} {% block content %}
|
|
<!-- Main jumbotron for a primary marketing message or call to action -->
|
|
<div class="jumbotron">
|
|
<h1>AdventureLog API Server</h1>
|
|
<p>
|
|
<a class="btn btn-primary btn-lg" href="/admin" role="button">Admin Site</a>
|
|
<a
|
|
class="btn btn-secondary btn-lg"
|
|
href="/accounts/password/change"
|
|
role="button"
|
|
>Account Managment</a
|
|
>
|
|
</p>
|
|
</div>
|
|
{% endblock %}
|