-
Notifications
You must be signed in to change notification settings - Fork 0
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
0 parents
commit 049ce50
Showing
200 changed files
with
82,783 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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,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; | ||
} | ||
|
||
|
||
|
||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,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> |
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.