mirror of
https://github.com/partitioncloud/partitioncloud-server.git
synced 2025-01-24 01:36:25 +01:00
18 lines
491 B
HTML
18 lines
491 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block header %}
|
|
<h1>{% block title %}Ajouter une partition à {{ album["name"] }}{% endblock %}</h1>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<form method="post" enctype="multipart/form-data">
|
|
Titre*
|
|
<input name="name" type="text" required/>
|
|
Auteur
|
|
<input name="author" type="text"/>
|
|
Paroles
|
|
<input name="body" type="text"/>
|
|
<input name="file" type="file" required/>
|
|
<input type="submit" value="Ajouter"/>
|
|
</form>
|
|
{% endblock %} |