11 lines
357 B
HTML
11 lines
357 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<div class="form-container">
|
|
<h2>Datei hochladen</h2>
|
|
<form method="POST" enctype="multipart/form-data">
|
|
<label for="file">CSV-Datei:</label>
|
|
<input type="file" id="file" name="file" accept=".csv" required>
|
|
<button type="submit">Upload</button>
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|