Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
CRUD_Animais_da_Fazenda
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
7
Issues
7
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Hiago Rafael
CRUD_Animais_da_Fazenda
Commits
416b3ae0
Commit
416b3ae0
authored
Apr 16, 2026
by
Hiago Rafael
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'main' of
http://gitlab.ariquemes.ifro.edu.br/2024105070069/CRUD_Animais_da_Fazenda
parents
dc82400c
89b2eaf6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
36 deletions
+0
-36
formulario.html
templates/formulario.html
+0
-36
No files found.
templates/formulario.html
View file @
416b3ae0
{% 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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment