50 lines
1.5 KiB
HTML
50 lines
1.5 KiB
HTML
|
{% extends 'admin/master.html' %}
|
||
|
{% block body %}
|
||
|
{{ super() }}
|
||
|
|
||
|
{% if current_user.is_authenticated %}
|
||
|
|
||
|
<!-- Content Header (Page header) -->
|
||
|
<section class="content-header">
|
||
|
<h1>
|
||
|
Tableau de bord
|
||
|
<small>Panneau de contrôle</small>
|
||
|
</h1>
|
||
|
<ol class="breadcrumb">
|
||
|
<li><a href="#"><i class="fa fa-dashboard"></i> Tableau de bord</a></li>
|
||
|
<li class="active">Panneau de contrôle</li>
|
||
|
</ol>
|
||
|
</section>
|
||
|
|
||
|
<section class="content">
|
||
|
{# todo: Fill index page #}
|
||
|
</section>
|
||
|
<!-- /.content -->
|
||
|
{% else %}
|
||
|
|
||
|
<section class="content" style="color: white;text-align: center;height:100%;width: 50%;
|
||
|
margin: 0 auto;">
|
||
|
<div class="col-sm-12">
|
||
|
<h1>LBI - PiPy</h1>
|
||
|
<p class="lead">
|
||
|
Connection
|
||
|
</p>
|
||
|
<p>
|
||
|
Pour accéder à l'interface d'administration veuillez utiliser vos identifiants.
|
||
|
</p>
|
||
|
<p>
|
||
|
<a class="btn btn-primary" href="{{ url_for('security.login') }}">Connection</a>
|
||
|
</p>
|
||
|
<br>
|
||
|
<p>
|
||
|
<a class="btn btn-primary" href="/"><i class="glyphicon glyphicon-chevron-left"></i> Retour</a>
|
||
|
</p>
|
||
|
</div>
|
||
|
</section>
|
||
|
|
||
|
<br><br><br><br><br><br><br><br><br>
|
||
|
<br><br><br><br><br><br><br><br><br><br>
|
||
|
{% endif %}
|
||
|
|
||
|
{% endblock body %}
|