Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
Dishly
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
2
Issues
2
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
O Bar da Lora
Dishly
Commits
9bd6d758
Commit
9bd6d758
authored
May 07, 2026
by
Natã Frederico Sangalletti
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Melhorias nos HTMLs
parent
a80c2760
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
27 additions
and
7 deletions
+27
-7
cadastro.html
templates/cadastro.html
+8
-4
editar.html
templates/editar.html
+4
-0
index.html
templates/index.html
+15
-3
No files found.
templates/cadastro.html
View file @
9bd6d758
<!
DOCTYPE
html>
<!
doctype
html>
<html
lang=
"pt-BR"
>
<html
lang=
"pt-BR"
>
<head>
<head>
<meta
charset=
"UTF-8"
>
<meta
charset=
"UTF-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
/
>
<link
rel=
"stylesheet"
href=
"/static/style.css"
>
<link
rel=
"stylesheet"
href=
"/static/style.css"
/
>
<title>
Cadastro
</title>
<title>
Cadastro
</title>
</head>
</head>
<body>
<body>
<div>
<div>
<form
action=
"/cadastro"
method=
"POST"
>
<form
action=
"/cadastro"
method=
"POST"
>
<label
for=
"nome"
>
Nome da Receita
</label>
<label
for=
"nome"
>
Nome da Receita
</label>
<input
id=
"nome"
name=
"nome"
type=
"text"
required
>
<input
id=
"nome"
name=
"nome"
type=
"text"
required
/
>
<button
type=
"reset"
>
Limpar
</button>
<button
type=
"reset"
>
Limpar
</button>
<button
type=
"submit"
>
Salvar
</button>
<button
type=
"submit"
>
Salvar
</button>
</form>
</form>
</div>
</div>
</body>
</body>
</html>
</html>
\ No newline at end of file
templates/editar.html
View file @
9bd6d758
<!DOCTYPE html>
<!DOCTYPE html>
<html
lang=
"pt-BR"
>
<html
lang=
"pt-BR"
>
<head>
<head>
<meta
charset=
"UTF-8"
>
<meta
charset=
"UTF-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
>
<link
rel=
"stylesheet"
href=
"/static/style.css"
>
<link
rel=
"stylesheet"
href=
"/static/style.css"
>
<title>
Editar Receita
</title>
<title>
Editar Receita
</title>
</head>
</head>
<body>
<body>
<div>
<div>
<form
action=
"/editar/{{ receita.id }}"
method=
"POST"
>
<form
action=
"/editar/{{ receita.id }}"
method=
"POST"
>
...
@@ -17,4 +19,5 @@
...
@@ -17,4 +19,5 @@
</form>
</form>
</div>
</div>
</body>
</body>
</html>
</html>
\ No newline at end of file
templates/index.html
View file @
9bd6d758
<!
DOCTYPE
html>
<!
doctype
html>
<html
lang=
"pt-BR"
>
<html
lang=
"pt-BR"
>
<head>
<head>
<meta
charset=
"UTF-8"
>
<meta
charset=
"UTF-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
/
>
<link
rel=
"stylesheet"
href=
"/static/style.css"
>
<link
rel=
"stylesheet"
href=
"/static/style.css"
/
>
<title>
Dishly
</title>
<title>
Dishly
</title>
</head>
</head>
<body>
<body>
<header>
<h1>
Seja Bem-vindo ao Dishly
</h1>
</header>
<div>
<a
href=
"/cadastro"
>
Cadastrar Receita
</a>
<a
href=
"/cadastro"
>
Cadastrar Receita
</a>
<h1>
Lista de Receitas
</h1>
<h1>
Lista de Receitas
</h1>
<ul>
<ul>
...
@@ -17,5 +23,10 @@
...
@@ -17,5 +23,10 @@
</li>
</li>
{% endfor %}
{% endfor %}
</ul>
</ul>
</div>
<footer>
<p>
©
2023 Dishly. Todos os direitos reservados.
</p>
</footer>
</body>
</body>
</html>
</html>
\ 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