thebadspace/templates/forms/bulk-add-location.twig

9 lines
332 B
Twig
Raw Normal View History

<form action="{{ path('location-bulk-add') }}" method="post" enctype="multipart/form-data">
<label for="myfile">Upload CSV</label>
<br>
<input type="file" name="myfile" id="myfile"></div>
<br/>
<input type="hidden" name="token" value="{{ csrf_token('upload') }}"/>
<button type="submit">Upload Locations</button>
</form>