8 Commits

Author SHA1 Message Date
Gustavo f26755deaa update 2026-03-03 19:41:28 -03:00
Gustavo 9eb90bf2ec Remove submódulo FrontFocusAgenda 2026-03-01 17:04:04 -03:00
Gustavo e0dff0ec3d Remoção do fundo para melhor estilização 2026-03-01 16:49:38 -03:00
Gustavo cf236a6b0b Remoção do fundo para melhor estilização 2026-03-01 16:43:34 -03:00
Gustavo f635a4e943 Excluir Site.html
remoção de copia
2026-02-27 01:28:23 +00:00
Gustavo 119b20eb12 Excluir Fundo1.png
Remoção do fundo antigo
2026-02-27 01:27:58 +00:00
Gustavo 9a2ea6114c Enviar arquivos para "/"
Criação do menu de login e um pouco de estilização
2026-02-27 01:00:13 +00:00
Gustavo e478ffcaa7 Enviar arquivos para "/"
Começo do front-end
2026-02-26 23:42:59 +00:00
4 changed files with 165 additions and 192 deletions
-52
View File
@@ -1,52 +0,0 @@
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tcc parte2</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="imagens/icone.png">
</head>
<body>
<!--Barrinha que fica no topo-->
<div id="topo">
<h1 id="textotop">Focus Agenda</h1>
</div>
<!--cabo bar-->
<!--Login e outras coisas-->
<div class="card">
<div id="log">
<h1 class="mens">Crie Sua Conta</h1>
<form method="POST" action="cadastro.html">
<div class="campo">
<label for="emailid">Email</label>
<input type="email" placeholder="Digite seu email" name="email" id="emailid" required>
</div>
<div class="campo">
<label for="nomeid">Nome</label>
<input type="name" placeholder="Nome de usuario" name="user" id="nomeid" required>
</div>
<div class="campo">
<label for="senhaid">Senha</label>
<input type="password" placeholder="Digite sua senha" name="senha" id="senhaid" required>
</div>
<div class="campo">
<label for="csenhaid">Confirmar Senha</label>
<input type="password" placeholder="Confirme sua senha" name="csenha" id="csenhaid" required>
</div>
<button type="submit" id="logbtn">Cadastrar</button>
</form>
</div>
</div>
<!--cabo log-->
</body>
</html>
BIN
View File
Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.0 KiB

+44
View File
@@ -0,0 +1,44 @@
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>TCC de cria</title>
</head>
<body>
<!--Barrinha que fica no topo-->
<div id="topo">
<h1 id="textotop">Focus Agenda</h1>
</div>
<!--cabo bar-->
<!--Login e outras coisas-->
<div id="log">
<h1 class="mens">Bem Vindo!</h1>
<h3 class="mens">Faça seu login</h3>
<form method="POST" action="login.php">
<div class="campo">
<label for="emailid">Email</label>
<input type="email" placeholder="Digite seu email" name="email" id="emailid" required>
</div>
<div class="campo">
<label for="senhaid">Senha</label>
<input type="password" placeholder="Digite sua senha" name="senha" id="senhaid" required>
</div>
<button type="submit" id="logbtn">Logar</button>
</form>
<p class="mens">Cadastrar-se</p>
</div>
<!--cabo log-->
</body>
</html>
+121 -140
View File
@@ -1,141 +1,122 @@
* { * {
padding: 0; padding: 0;
margin: 0; margin: 0;
} }
p, p,
h1, h1,
h2, h2,
h3 { h3 {
color: black; color: black;
margin: 0; margin: 0;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif
} }
label { label{
display: block; display: block;
} }
body { body {
height: 100vh; height: 100vh;
display: flex; display: flex;
flex-direction: column; justify-content: center;
justify-content: center; align-items: center;
align-items: center; }
background-color: rgba(139, 141, 147, 0.911);
} @media (max-width: 768px) {
body {
@media (max-width: 768px) { padding-left: 20px;
body { padding-right: 20px;
padding-left: 20px; justify-content: center;
padding-right: 20px; }
justify-content: center; }
}
} @media (max-width: 480px) {
#log {
@media (max-width: 480px) { width: 100% !important;
#log { max-width: 320px;
width: 100% !important; }
max-width: 320px; }
} #topo {
} width: 100%;
height: 50px;
#topo { background-color: #111;
width: 100%; position: fixed;
height: 50px; top: 0;
background-color: #111; left: 0;
position: fixed; background: linear-gradient(to right, #C0392B 47%, #7A4951 73%, #114455 87%);
top: 0; display: flex;
left: 0; align-items: center;
background: linear-gradient(to right, #C0392B 47%, #7A4951 73%, #114455 87%); justify-content: flex-start;
display: flex; padding-left: 20px;
align-items: center;
justify-content: flex-start; }
padding-left: 20px;
#textotop {
} font-size: 38px;
margin: 0;
#textotop { font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
font-size: 38px; }
margin: 0;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; #log {
} width: 350px;
display: flex;
#log { flex-direction: column;
width: 100%; gap: 15px;
display: flex; color: white;
flex-direction: column; margin-top: 70px; /* Compensa a barra fixa do topo */
gap: 15px; }
color: white; #campo {
} display: flex;
flex-direction: column;
#campo { gap: 15px;
display: flex; align-self: center;
flex-direction: column; }
gap: 15px; #menslog{
align-self: center; font-size: 20px;
} }
#menslog { #emailid, #senhaid {
font-size: 20px; height: 50px;
} width: 100%;
padding: 10px;
#emailid, font-size: 16px;
#senhaid, border: 1px solid #ccc;
#nomeid, border-radius: 4px;
#csenhaid { box-sizing: border-box;
height: 50px; }
width: 100%;
padding: 10px; label {
font-size: 16px; display: block;
border: 1px solid #ccc; margin-bottom: 5px;
border-radius: 4px; font-weight: bold;
box-sizing: border-box; color: white;
} }
label { form {
display: block; display: flex;
margin-bottom: 5px; flex-direction: column;
font-weight: bold; gap: 15px;
color: black; width: 100%;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; }
} #logbtn {
align-self: center;
form { width: 50%;
display: flex; padding: 12px;
flex-direction: column; font-size: 18px;
gap: 15px; font-weight: bold;
width: 100%; background-color: #C0392B;
} color: white;
border: none;
#logbtn { border-radius: 4px;
align-self: center; cursor: pointer;
width: 50%; transition: background-color 0.3s;
padding: 12px; }
font-size: 18px;
font-weight: bold; #logbtn:hover {
background-color: #C0392B; background-color: #A03224;
color: white; }
border: none; .mens {
border-radius: 4px; align-self: center;
cursor: pointer;
transition: background-color 0.3s;
}
#logbtn:hover {
background-color: #A03224;
}
.mens {
align-self: center;
}
.card {
background-color: rgb(216, 214, 197);
border-radius: 16px;
padding: 50px 35px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.08);
width: 400px;
max-width: 90%;
margin-top: 70px; /* Compensa a barra fixa do topo */
} }