Spaces:
No application file
No application file
Create edit_orcamento.html
Browse files
templates/templates/edit_orcamento.html
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="pt-BR">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<title>Editar Orçamento</title>
|
6 |
+
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
|
7 |
+
</head>
|
8 |
+
<body>
|
9 |
+
<div class="container">
|
10 |
+
<h1>Editar Orçamento</h1>
|
11 |
+
<form method="post">
|
12 |
+
<label>Cliente:</label>
|
13 |
+
<input type="text" name="cliente" value="{{ orcamento.cliente }}" required>
|
14 |
+
<label>Endereço:</label>
|
15 |
+
<input type="text" name="endereco" value="{{ orcamento.endereco }}" required>
|
16 |
+
<label>Valor Total:</label>
|
17 |
+
<input type="number" name="valor_total" value="{{ orcamento.valor_total }}" required>
|
18 |
+
<button type="submit">Salvar Alterações</button>
|
19 |
+
</form>
|
20 |
+
</div>
|
21 |
+
</body>
|
22 |
+
</html>
|