Commit 416b3ae0 by Hiago Rafael
parents dc82400c 89b2eaf6
{% extends "base.html" %}
{% block content %}
<h2>Cadastro de Animal</h2>
<form method="POST">
<label>Nome do Animal:</label><br>
<input type="text" name="nome" required><br><br>
<label>Espécie:</label><br>
<input type="text" name="especie" required><br><br>
<label>Raça:</label><br>
<input type="text" name="raca"><br><br>
<label>Idade:</label><br>
<input type="number" name="idade"><br><br>
<label>Peso (kg):</label><br>
<input type="number" step="0.1" name="peso"><br><br>
<label>Data de Nascimento:</label><br>
<input type="date" name="data_nascimento"><br><br>
<label>Sexo:</label><br>
<select name="sexo">
<option value="M">Macho</option>
<option value="F">Fêmea</option>
</select><br><br>
<button type="submit">Salvar</button>
</form>
{% endblock %}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment