partitioncloud-server/partitioncloud/templates/albums/create-album.html

13 lines
302 B
HTML
Raw Normal View History

2022-08-13 23:36:10 +02:00
{% extends 'base.html' %}
{% block header %}
<h1>{% block title %}Nouvel Album{% endblock %}</h1>
{% endblock %}
{% block content %}
<form method="post">
<label for="name">Nom</label>
<input name="name" id="name" required>
<input type="submit" value="Créer">
</form>
{% endblock %}