Spaces:
No application file
No application file
| <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> | |