mirror of
https://github.com/partitioncloud/partitioncloud-server.git
synced 2025-01-24 09:46:25 +01:00
13 lines
302 B
HTML
13 lines
302 B
HTML
{% 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 %} |