-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create fotoadicionadafuncionario.html
- Loading branch information
1 parent
060cd0c
commit 379f8bb
Showing
1 changed file
with
140 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,140 @@ | ||
<!DOCTYPE html> | ||
<html lang="pt"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Álbum de Recordações - Funcionário</title> | ||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat"> | ||
<style> | ||
body { | ||
font-family: Montserrat, sans-serif; | ||
display: flex; | ||
flex-direction: column; | ||
margin: 0; | ||
} | ||
|
||
#header { | ||
position: fixed; | ||
top: 0; | ||
left: 0; | ||
width: 100%; | ||
height: 30px; | ||
background-color: #DA6CB3; | ||
display: flex; | ||
justify-content: flex-end; | ||
align-items: center; | ||
padding: 14px; | ||
z-index: 1000; | ||
} | ||
|
||
#logo-container { | ||
display: flex; | ||
align-items: center; | ||
gap: 10px; | ||
margin-right: 40px; | ||
} | ||
|
||
button { | ||
font-size: 14px; | ||
padding: 20px; | ||
font-family: Montserrat, sans-serif; | ||
font-weight: bold; | ||
text-align: center; | ||
background-color: #FFE8E5; | ||
border-radius: 25px; | ||
cursor: pointer; | ||
height: 20px; | ||
width: 170px; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
text-decoration: none; | ||
border: none; | ||
box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2); | ||
} | ||
|
||
.text { | ||
float: left; | ||
font-size: 12px; | ||
text-align: left; | ||
margin-top: 1px; | ||
justify-content: left; | ||
margin-left: 10px; | ||
margin-top: 50px; | ||
margin-bottom: 100px; | ||
z-index: 1080; | ||
} | ||
|
||
.flex-center { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
flex-wrap: wrap; | ||
text-align: center; | ||
} | ||
|
||
a { | ||
text-decoration: none; | ||
color: inherit; | ||
} | ||
|
||
.breadcrumb { | ||
text-align: left; | ||
font-size: 1.0em; | ||
padding: 10px; | ||
background-color: transparent; | ||
} | ||
|
||
.end-buttons{ | ||
text-align: center | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
|
||
</style> | ||
</head> | ||
<body> | ||
<div id="header" style="display: flex; justify-content: space-between; align-items: center;"> | ||
<div id="logo-container"> | ||
<div id="logo-principal"> | ||
<a href="{% url 'home' %}"> | ||
<img src="{% static 'logo\logoB.png' %}" alt="Logo Bloom" style="width: 60px; height: auto;"> | ||
</a> | ||
</div> | ||
</div> | ||
|
||
<div id="menu-buttons" style="display: flex; gap: 20px; margin-right: 25px;"> | ||
<button> | ||
<a href={% url 'loginpadri'%} style="color: #423560;">Login Padrinho</a> | ||
</button> | ||
<button> | ||
<a href={% url 'loginfunci'%} style="color: #423560;">Login Funcionário</a> | ||
</button> | ||
</div> | ||
</div> | ||
<div class="breadcrumb"> | ||
<p>Login > Menu Funcionário > Selecionar > Menu criança</p> | ||
</div> | ||
<div class="content"> | ||
<div class="end-text"> | ||
<h1>Informações registradas com sucesso</h1> | ||
<img src="flor-bloom.png" alt="Flor do Bloom"> | ||
</div> | ||
<div class="end-buttons"> | ||
<div class="end-button"> | ||
<button> | ||
<a href="{% url 'home' %}"> | ||
<p> Voltar para a Home </p> | ||
</a> | ||
</button> | ||
</div> | ||
<div class="end-button"> | ||
<button> | ||
<a href="{% url 'home' %}"> | ||
<p> Voltar para o menu </p> | ||
</a> | ||
</button> | ||
|
||
</div> | ||
</div> | ||
</div> |