atualização da tela de login
This commit is contained in:
@@ -0,0 +1,82 @@
|
||||
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
font-family: 'Inter', sans-serif;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: #1d1d1d;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
height: 100vh;
|
||||
}
|
||||
|
||||
.login-container {
|
||||
background-color: #9cc1d921;
|
||||
padding: 40px;
|
||||
border-radius: 20px;
|
||||
box-shadow: 0 0 20px rgba(0,0,0,0.5);
|
||||
width: 300px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.login-container h2 {
|
||||
color: white;
|
||||
margin-bottom: 30px;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.input-box {
|
||||
position: relative;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.input-box i {
|
||||
position: absolute;
|
||||
top: 12px;
|
||||
left: 10px;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.input-box input {
|
||||
width: 100%;
|
||||
padding: 10px 10px 10px 35px;
|
||||
border: none;
|
||||
border-radius: 10px;
|
||||
background: #1f1f1f;
|
||||
color: white;
|
||||
box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.8);
|
||||
}
|
||||
|
||||
.input-box input::placeholder {
|
||||
color: #aaa;
|
||||
}
|
||||
|
||||
.buttons {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.btn {
|
||||
width: 48%;
|
||||
padding: 10px;
|
||||
background-color: #385c737e;
|
||||
border: none;
|
||||
border-radius: 8px;
|
||||
color: white;
|
||||
cursor: pointer;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
.btn:hover {
|
||||
background-color: #444;
|
||||
}
|
||||
|
||||
.forgot {
|
||||
width: 100%;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
50
login.html
50
login.html
@@ -1,33 +1,31 @@
|
||||
<!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="css/base.css">
|
||||
<link rel="stylesheet" href="css/LoginStyle.css">
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
||||
<title>Login</title>
|
||||
</head>
|
||||
<body>
|
||||
<form method="POST" action="#">
|
||||
<div class="main-login">
|
||||
<link rel="stylesheet" href="/biblioteca-de-contos/css/LoginStyle.css"/>
|
||||
<link rel="stylesheet" href="/biblioteca-de-contos/css/base.css"/>
|
||||
<body>
|
||||
<div class="login-container">
|
||||
<h2>LOGIN</h2>
|
||||
|
||||
<div class="left-login">
|
||||
<h1>Faça Login<br>Mergulhe em histórias que farão sua alma tremer</h1>
|
||||
</div>
|
||||
<div class="input-box">
|
||||
<i class="fas fa-user"></i>
|
||||
<input type="text" placeholder="Usuário" />
|
||||
</div>
|
||||
|
||||
<div class="right-login"></div>
|
||||
<div class="card-login">
|
||||
<h1>LOGIN</h1>
|
||||
<div class="textfield">
|
||||
<label for="usuario">Usuário</label>
|
||||
<input type="text" name="usuario" placeholder="Usuário">
|
||||
</div>
|
||||
<div class="textfield">
|
||||
<label for="senha">Senha</label>
|
||||
<input type="password" name="Senha" placeholder="senha">
|
||||
</div>
|
||||
<button class="btn-login">Login</button>
|
||||
</div>
|
||||
</form>
|
||||
</body>
|
||||
<div class="input-box">
|
||||
<i class="fas fa-lock"></i>
|
||||
<input type="password" placeholder="Senha" />
|
||||
</div>
|
||||
|
||||
<div class="buttons">
|
||||
<button class="btn">Login</button>
|
||||
<button class="btn">Registrar</button>
|
||||
</div>
|
||||
|
||||
<button class="btn forgot">Esqueceu sua Senha?</button>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user