pywallter/templates/personnalize_blog.html
2025-12-21 19:25:42 +01:00

35 lines
917 B
HTML

{% extends 'up_squelette.html' %}
{% block main %}
<h2> Personnalisation du blog </h2>
<form method="POST" action="" enctype="multipart/form-data">
<br />
<label for="blog-theme">Theme</label>
<select id="blog-theme" name="blog-theme">
<option selected> Default </option>
<option>orangina</option>
<option>Blanc&Noir</option>
<option>Noir&Blanc</option>
<option>Orange&noir</option>
</select>
<div id="personnal-blog-theme" class="center">
<p> Vous pouvez faire le choix d'envoyer un fichier css pour personnaliser votre blog directement.
<label> Envoyer mon thème </label>
<input type="file" class="center" name="personnal-blog-theme" id="personnal-blog-theme"/>
<br />
</div>
<button class="btn btn-default btn-primary" type="submit"> Enregistrer mes modifications </button>
</form>
{% endblock %}