35 lines
927 B
HTML
35 lines
927 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>Blanc et noir</option>
|
|
<option>Noir et blanc </option>
|
|
<option>Chocolat</option>
|
|
<option>Orange et 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 %}
|