Correct login landing page

This commit is contained in:
2025-09-26 00:28:15 +02:00
parent b0190336b0
commit 823884d265
25 changed files with 373 additions and 515 deletions

View File

@@ -3,39 +3,32 @@
{% block main %}
<h3> Ma gallerie </h3>
<br />
<div class="center row">
{% if fichiers %}
<div class="gallery">
{% for image in fichiers %}
<div class="column">
<div class="picture">
<a href="/myfiles/images/{{ image }}" class="glightbox">
<img src="/myfiles/images/thumbnails/{{ image }}" class="img-rounded gallery" alt=""/>
</a>
</a>
<div class="control">
<a href="{{ url_for('mygallery.remove_privateImage', filename=image) }}"> <button class="btn btn-danger "><span class="glyphicon glyphicon-trash"></span> </button></a>
<!-- <button class="btn btn-success "><span class="glyphicon glyphicon-globe"></span></button> -->
</div>
<a href="{{ url_for('mygallery.remove_privateImage', filename=image) }}"> <button class="danger trash"></button></a>
</div>
{% endfor %}
{% endfor %}
</div>
{% else %}
<h2> Il n'y a aucunes images dans votre gallerie </h2>
<h2> Il n'y a aucunes images dans votre gallerie </h2>
{% endif %}
</div>
</div>