Skip to content

Commit

Permalink
Tarea terminada
Browse files Browse the repository at this point in the history
  • Loading branch information
glaukon committed Feb 7, 2022
0 parents commit 049ce50
Show file tree
Hide file tree
Showing 200 changed files with 82,783 additions and 0 deletions.
7 changes: 7 additions & 0 deletions css/bootstrap.min.css

Large diffs are not rendered by default.

38 changes: 38 additions & 0 deletions css/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
* {
margin: 0;
padding: 0;
font-family: "Nunito", Verdana, sans-serif;
}

body.login {
background-color: #34889c;
background: linear-gradient(to right, #34889c, #4678c8);
}

.bg-login {
background-image: url("../img/login.svg");
background-position: center center;
background-repeat: no-repeat;
background-size: contain;
}

#main-page {
background-color: #f8f9fc;
width: auto;
}
.callout-primary {
border-left-width: 6px;
border-left-color: #428bca;
}
.callout-success {
border-left-width: 6px;
border-left-color: #1cc88a;
}
.callout-info {
border-left-width: 6px;
border-left-color: #36b9cc;
}




1 change: 1 addition & 0 deletions img/login.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/mouse.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/pantalla.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/torre.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/webcam.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/xiaomi.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
46 changes: 46 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Página de inicio</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./css/bootstrap.min.css">
<link rel="stylesheet" href="./css/main.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<script src="./js/bootstrap.bundle.min.js"></script>
</head>
<body class="login">
<div class="container w-75 bg-white mt-5 rounded-3 shadow">
<div class="row align-items-lg-stretch">
<div class="col bg-login my-5 mx-2 d-none d-sm-none d-md-block">
</div>
<div class="col py-5">
<h2 class="fw-bold text-center py-5">Bienvenido</h2>
<form action="./principal.html">
<div class="mb-4">
<label for="email" class="form-label">Correo electrónico</label>
<input type="email" class="form-control" name="email">
</div>
<div class="mb-4">
<label for="password" class="form-label">Contraseña</label>
<input type="password" class="form-control" name="password">
</div>
<div class="mb-4 form-check">
<input type="checkbox" name="connected" class="form-check-input">
<label for="connected" class="form-check-label">Mantenerme conectado</label>
</div>
<div class="d-grid">
<button type="submit" id="boton" class="btn btn-primary ">Iniciar Sesión</button>
</div>
<div class="my-3">
<span>No tienes cuenta? <a href="#">Regístrate</a></span><br>
<span><a href="#">Recuperar Password</a></span>
</div>
</form>
</div>
</div>
</div>
</body>
</html>
7 changes: 7 additions & 0 deletions js/bootstrap.bundle.min.js

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions node_modules/bootstrap/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

239 changes: 239 additions & 0 deletions node_modules/bootstrap/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 049ce50

Please sign in to comment.