mumui/templates/home.html
2023-09-20 19:41:19 +02:00

27 lines
953 B
HTML

{% extends 'base.html' %}
{% block title %}Home{% endblock %}
{% block content %}
{% if user.is_authenticated %}
<div class="row justify-content-md-center">
<div class="col-lg-4 col-md-8 col-sm-8">
<h2 style="text-align: center;">Hi {{ user.username }} ! How are you ?</h2>
</div>
</div>
<div class="row justify-content-md-center">
<div class="col-lg-6 col-md-8 col-sm-8">
<div style="text-align: center;">Forget, i don't care... Please go on
<a href="/deployment/">Deployments</a>
and enjoy the life !
</div>
</div>
</div>
{% else %}
<div class="row justify-content-md-center">
<div class="col-lg-6 col-md-8 col-sm-8">
<h4 style="text-align: center;">Please log in !</h4>
</div>
</div>
{% endif %}
{% endblock %}