RandomSec/MUOR/templates/home.html

17 lines
573 B
HTML
Raw Permalink Normal View History

2022-01-23 22:34:16 +01:00
<!-- templates/home.html-->
{% extends 'base.html' %}
{% block title %}Home{% endblock %}
{% block content %}
2022-01-30 19:34:46 +01:00
{% if user.is_authenticated %}
<p>Hi {{ user.username }}!</p>
<p><a href="/">Go to your instance</a></p>
<p><a href="{% url 'logout' %}" class="btn btn-light">Log Out</a></p>
{% else %}
<p>You are not logged in</p>
<p><a href="{% url 'login' %}" class="btn btn-light">Log In</a></p>
<p><a href="{% url 'signup' %}" class="btn btn-light">Create an
account</a></p>
{% endif %}
2022-01-23 22:34:16 +01:00
{% endblock %}