Commit baa2812e by bricioso
parents d3c5da65 05e21a37
body {
font-family: Arial;
background: #f4f4f4;
margin: 0;
}
.topo {
background: #2d6a4f;
color: white;
padding: 15px;
text-align: center;
}
nav a {
color: white;
margin: 10px;
text-decoration: none;
font-weight: bold;
}
.container {
width: 80%;
margin: 20px auto;
}
table {
width: 100%;
border-collapse: collapse;
background: white;
}
th {
background: #40916c;
color: white;
}
th, td {
padding: 10px;
text-align: center;
}
tr:nth-child(even) {
background: #f1f1f1;
}
button {
background: #2d6a4f;
color: white;
border: none;
padding: 10px;
cursor: pointer;
}
button:hover {
background: #1b4332;
}
{% extends "base.html" %} {% extends "base.html" %}
{% block content %} {% block content %}
<h2>Cadastro de Animal</h2> <h2>Cadastro da Pessoa</h2>
<form method="POST"> <form method="POST">
<label>Nome do Animal:</label><br> <label>Nome do Pessoa:</label><br>
<input type="text" name="nome" required><br><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> <label>Idade:</label><br>
<input type="number" name="idade"><br><br> <input type="number" name="idade"><br><br>
...@@ -25,8 +19,8 @@ ...@@ -25,8 +19,8 @@
<label>Sexo:</label><br> <label>Sexo:</label><br>
<select name="sexo"> <select name="sexo">
<option value="M">Macho</option> <option value="M">Masculino</option>
<option value="F">Fêmea</option> <option value="F">Feminino</option>
</select><br><br> </select><br><br>
<button type="submit">Salvar</button> <button type="submit">Salvar</button>
......
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