forked from Anteros-Code-Mentoria/poc-mvc-ocr
15 lines
509 B
HTML
15 lines
509 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Upload de Arquivo - OCR App{% endblock %}
|
|
|
|
{% block content %}
|
|
<h3>Upload de Documento</h3>
|
|
<form method="POST" action="/upload" enctype="multipart/form-data">
|
|
<div class="mb-3">
|
|
<label for="file" class="form-label">Selecionar Arquivo</label>
|
|
<input class="form-control" type="file" id="file" name="file" accept=".pdf,.jpg,.png,.jpeg" required>
|
|
</div>
|
|
<button class="btn btn-success" type="submit">Enviar</button>
|
|
</form>
|
|
{% endblock %}
|