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