29 lines
1.1 KiB
HTML
29 lines
1.1 KiB
HTML
{% extends 'base.html' %}
|
|
|
|
{% block title %}Home{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="container-fluid">
|
|
{% 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="{% url '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 %}
|
|
</div>
|
|
{% endblock %} |