-
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.
- Loading branch information
Showing
1 changed file
with
107 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,107 @@ | ||
<!DOCTYPE html> | ||
<html lang="pt-br"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Fim_Chamada</title> | ||
<style> | ||
body, html { | ||
height: 100%; | ||
margin: 0; | ||
font-family: Arial, sans-serif; | ||
} | ||
.container { | ||
height: 100%; | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
|
||
.header { | ||
display: flex; | ||
justify-content: flex-end; | ||
padding: 15px; | ||
background: #DA6CB3; | ||
display: flex; | ||
justify-content: space-between; | ||
|
||
} | ||
|
||
.header-logo { | ||
height: 50px; | ||
width: auto; | ||
align-items: center; | ||
} | ||
|
||
.header-buttons button { | ||
padding: 10px 20px; | ||
margin-left: 15px; | ||
border: none; | ||
border-radius: 100px; | ||
background-color: white; | ||
color: black; | ||
cursor: pointer; | ||
font-size: 1em; | ||
} | ||
|
||
.buttons { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
justify-content: center; | ||
height: 100%; | ||
} | ||
|
||
.buttons button { | ||
display: block; | ||
width: 20%; /* Make buttons fill the container width */ | ||
padding: 40px 20px; | ||
margin-bottom: 15px; /* Adds space between the buttons */ | ||
border: none; | ||
border-radius: 100px; /* Adjust the border-radius to match your design */ | ||
background-color: #423560; /* This is a placeholder, you should pick the exact color from the image */ | ||
color: white; | ||
cursor: pointer; | ||
font-size: 1em; | ||
} | ||
|
||
.buttons button:last-child { | ||
margin-bottom: 0; | ||
} | ||
.success-message { | ||
text-align: center; | ||
margin-bottom: 30px; | ||
font-size: 22px; | ||
} | ||
|
||
.success-message p { | ||
color: #4A90E2; /* This is a placeholder, you should pick the exact color from the image */ | ||
font-weight: bold; | ||
} | ||
|
||
.breadcrumbs { | ||
font-size: 0.9em; | ||
color: #666; /* This is a placeholder, you should pick the exact color from the image */ | ||
margin-bottom: 30px; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<header class="header"> | ||
<img src="https://raw.githubusercontent.com/arthursuzuki/bloom_django/main/app_bloom/static/logo/logoB.png" alt="Your Logo" class="header-logo"> | ||
<div class="header-buttons"> | ||
<button>Login Padrinho</button> | ||
<button>Login Funcionário</button> | ||
</div> | ||
</header> | ||
<t> Login > Selecionar > Menu Funcionário > Chamada</t> | ||
<div class="buttons"> | ||
<div class="success-message"> | ||
<h2>Informações registradas com sucesso</h2h> | ||
</div> | ||
<button type="button">Voltar para a Home Page</button> | ||
<button type="button">Voltar para o Menu de chamada</button> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |