13 lines
392 B
HTML
13 lines
392 B
HTML
{% extends "base.html" %}
|
|
{% block title %} Home Manager {% endblock title%}
|
|
{% block content %}
|
|
|
|
{% if user.is_authenticated %}
|
|
<div class="jumbotron">
|
|
<h1 class="display-4">Welcome {{ user.username }}</h1>
|
|
</div>
|
|
{% else %}
|
|
<p>You are not logged in</p>
|
|
<a href="{% url 'login' %}">Log In</a>
|
|
{% endif %}
|
|
{% endblock content %} |