refomap_adm / templates /create_orcamento.html
Persano's picture
Rename templates/templates/create_orcamento.html to templates/create_orcamento.html
e9880f8 verified
raw
history blame contribute delete
635 Bytes
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<title>Novo Orçamento</title>
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
</head>
<body>
<div class="container">
<h1>Criar Novo Orçamento</h1>
<form method="post">
<label>Cliente:</label>
<input type="text" name="cliente" required>
<label>Endereço:</label>
<input type="text" name="endereco" required>
<label>Valor Total:</label>
<input type="number" name="valor_total" required>
<button type="submit">Salvar</button>
</form>
</div>
</body>
</html>