13 lines
534 B
HTML
13 lines
534 B
HTML
|
{% extends "base.html" %} {% block title %}Subida{% endblock %} {% block content %}
|
||
|
|
||
|
<div class=container>
|
||
|
<form class="list-group list-group-flush" action="api\/upload" method="POST" enctype="multipart/form-data">
|
||
|
<div class="form-group">
|
||
|
<label for="exampleFormControlFile1">Example file input</label>
|
||
|
<input type="file" class="form-control-file" id="exampleFormControlFile1">
|
||
|
</div>
|
||
|
<button type="submit" class="btn btn-primary">Submit</button>
|
||
|
</form>
|
||
|
</div>
|
||
|
|
||
|
{% endblock %}
|