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