Skip to content

Commit

Permalink
Create fimchamada
Browse files Browse the repository at this point in the history
  • Loading branch information
ianbnunes authored Nov 30, 2023
1 parent e6b8031 commit ba6883f
Showing 1 changed file with 107 additions and 0 deletions.
107 changes: 107 additions & 0 deletions app_bloom/templates/fimchamada
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>&nbsp;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>

0 comments on commit ba6883f

Please sign in to comment.