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
baa2812e
Commit
baa2812e
authored
Apr 16, 2026
by
bricioso
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'main' of
http://gitlab.ariquemes.ifro.edu.br/2024105070069/CRUD_Animais_da_Fazenda
parents
d3c5da65
05e21a37
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
62 additions
and
10 deletions
+62
-10
style.css
static/css/style.css
+58
-0
cadastro_pessoa.html
templates/cadastro_pessoa.html
+4
-10
No files found.
static/css/style.css
View file @
baa2812e
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
;
}
templates/cadastro_pessoa.html
View file @
baa2812e
{% extends "base.html" %}
{% block content %}
<h2>
Cadastro d
e Animal
</h2>
<h2>
Cadastro d
a Pessoa
</h2>
<form
method=
"POST"
>
<label>
Nome do
Animal
:
</label><br>
<label>
Nome do
Pessoa
:
</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>
...
...
@@ -25,8 +19,8 @@
<label>
Sexo:
</label><br>
<select
name=
"sexo"
>
<option
value=
"M"
>
Ma
ch
o
</option>
<option
value=
"F"
>
F
êmea
</option>
<option
value=
"M"
>
Ma
sculin
o
</option>
<option
value=
"F"
>
F
eminino
</option>
</select><br><br>
<button
type=
"submit"
>
Salvar
</button>
...
...
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