31 lines
1.0 KiB
HTML
31 lines
1.0 KiB
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="pt-BR">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<title>Novo Relatório de Cotas</title>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<h1>Registrar Novo Relatório de Cotas</h1>
|
||
|
|
<form method="post">
|
||
|
|
<div>
|
||
|
|
<label for="setor_id">ID do Setor:</label>
|
||
|
|
<input type="number" id="setor_id" name="setor_id" required>
|
||
|
|
</div>
|
||
|
|
<div>
|
||
|
|
<label for="comite_id">ID do Comitê:</label>
|
||
|
|
<input type="number" id="comite_id" name="comite_id" required>
|
||
|
|
</div>
|
||
|
|
<div>
|
||
|
|
<label for="total_cotas">Total de Cotas:</label>
|
||
|
|
<input type="number" id="total_cotas" name="total_cotas" step="0.01" required>
|
||
|
|
</div>
|
||
|
|
<div>
|
||
|
|
<label for="data_relatorio">Data do Relatório:</label>
|
||
|
|
<input type="date" id="data_relatorio" name="data_relatorio" required>
|
||
|
|
</div>
|
||
|
|
<button type="submit">Registrar Relatório</button>
|
||
|
|
</form>
|
||
|
|
<a href="{{ url_for('listar_relatorios_cotas') }}">Voltar para Lista</a>
|
||
|
|
</body>
|
||
|
|
</html>
|