You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
599 B
19 lines
599 B
{% extends "main.html" %}
|
|
|
|
{% block title %} Upload {% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<form action="/upload/catalog" method="post" enctype="multipart/form-data" x-data="{ file: '' }">
|
|
<fieldset class="grid">
|
|
<h3>Catalog Import</h3>
|
|
<label role="button" class="secondary" x-show="!file">
|
|
Choose File
|
|
<input type="file" name="file" x-model="file" style="display: none" required />
|
|
</label>
|
|
<input type="submit" value="Upload" x-show="file">
|
|
<input type="reset" value="Cancel" x-show="file">
|
|
</fieldset>
|
|
</form>
|
|
|
|
{% endblock %} |