-
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 dabf0cb
Showing
10 changed files
with
227 additions
and
0 deletions.
There are no files selected for viewing
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,30 @@ | ||
body { | ||
background-image: url("../img/1.jpeg"); | ||
background-size: cover; | ||
background-repeat: no-repeat; | ||
background-attachment: fixed; | ||
background-position: center; | ||
} | ||
|
||
.container-form { | ||
background-color: #f7f8f58b; | ||
padding: 50px; | ||
border-radius: 10px; | ||
box-shadow: 0px 0px 10px #000; | ||
width: 50%; | ||
height: 70%; | ||
margin: auto; | ||
margin-top: 7em; | ||
} | ||
|
||
.titulo { | ||
text-align: center; | ||
font-size: 2em; | ||
font-weight: bold; | ||
color: #4683ffbd; | ||
} | ||
|
||
.label { | ||
font-size: 1em; | ||
font-weight: bold; | ||
} |
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,31 @@ | ||
<?php include_once './librerias/librerias.php'; ?> | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<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>Control de cuentas</title> | ||
<link rel="stylesheet" href="./estilos/login.css"> | ||
</head> | ||
<body> | ||
<div class="container container-form"> | ||
<form class="formulario"> | ||
<center><h3 class="titulo">Iniciar sesión</h3></center> | ||
<div class="mb-3"> | ||
<label for="exampleInputEmail1" class="form-label label">Usuario</label> | ||
<label class="float-end"><i class="fa-solid fa-user"></i></label> | ||
<input type="text" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp"> | ||
</div> | ||
<div class="mb-3"> | ||
<label for="exampleInputPassword1" class="form-label label">Contraseña</label> | ||
<label class="float-end"><i class="fa-solid fa-key"></i></label> | ||
<input type="password" class="form-control" id="exampleInputPassword1"> | ||
</div> | ||
<center><a href="./vistas/cuentasActivas.php" class="btn btn-primary w-25">Entrar <i class="fa-solid fa-arrow-right-to-bracket"></i></a></center> | ||
</form> | ||
</div> | ||
|
||
|
||
</body> | ||
</html> |
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,6 @@ | ||
<!-- bootstrap --> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous"> | ||
|
||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script> | ||
<!-- fontawesome --> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" /> |
Empty file.
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,25 @@ | ||
<?php include_once '../librerias/librerias.php'; ?> | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<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>Ajustes</title> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<header class="header"> | ||
<?php include_once 'menu.php'; ?> | ||
</header> | ||
<main class="main"> | ||
<div class="row"> | ||
<div class="col-md-12"> | ||
<center><h1>Ajustes</h1></center> | ||
|
||
</div> | ||
</div> | ||
</div> | ||
|
||
</body> | ||
</html> |
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,25 @@ | ||
<?php include_once '../librerias/librerias.php'; ?> | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<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>Clientes</title> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<header class="header"> | ||
<?php include_once 'menu.php'; ?> | ||
</header> | ||
<main class="main"> | ||
<div class="row"> | ||
<div class="col-md-12"> | ||
<center><h1>Clientes</h1></center> | ||
|
||
</div> | ||
</div> | ||
</div> | ||
|
||
</body> | ||
</html> |
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,25 @@ | ||
<?php include_once '../librerias/librerias.php'; ?> | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<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>Cuentas Activas</title> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<header class="header"> | ||
<?php include_once 'menu.php'; ?> | ||
</header> | ||
<main class="main"> | ||
<div class="row"> | ||
<div class="col-md-12"> | ||
<center><h1>Cuentas Activas</h1></center> | ||
|
||
</div> | ||
</div> | ||
</div> | ||
|
||
</body> | ||
</html> |
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,25 @@ | ||
<?php include_once '../librerias/librerias.php'; ?> | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<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>Historial de pagos</title> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<header class="header"> | ||
<?php include_once 'menu.php'; ?> | ||
</header> | ||
<main class="main"> | ||
<div class="row"> | ||
<div class="col-md-12"> | ||
<center><h1>Historial de pagos</h1></center> | ||
|
||
</div> | ||
</div> | ||
</div> | ||
|
||
</body> | ||
</html> |
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,60 @@ | ||
<style> | ||
.bg{ | ||
background: linear-gradient( to right, #ecf5ff, #4683ffbd, #95c5f8, #f7f8f5, #eef0f2); | ||
background-size: 400% 400%; | ||
animation: animate-background-gradient 14s infinite ease-in-out; | ||
} | ||
@keyframes animate-background-gradient { | ||
0% { | ||
background-position: 0% 50%; | ||
} | ||
50% { | ||
background-position: 100% 50%; | ||
} | ||
100% { | ||
background-position: 0% 50%; | ||
} | ||
} | ||
li a:hover{ | ||
border-bottom: 3px solid #4683ffbd; | ||
transition: all 0.5s ease; | ||
} | ||
</style> | ||
<nav class="navbar navbar-light bg-light bg fixed-top"> | ||
<div class="container-fluid"> | ||
<button class="navbar-toggler" type="button" data-bs-toggle="offcanvas" data-bs-target="#offcanvasNavbar" aria-controls="offcanvasNavbar"> | ||
<span class="navbar-toggler-icon"></span> | ||
</button> | ||
<div class="offcanvas offcanvas-star bg" tabindex="-1" id="offcanvasNavbar" aria-labelledby="offcanvasNavbarLabel"> | ||
<div class="offcanvas-header"> | ||
<h5 class="offcanvas-title" id="offcanvasNavbarLabel">Menu</h5> | ||
<button type="button" class="btn-close text-reset" data-bs-dismiss="offcanvas" aria-label="Close"></button> | ||
</div> | ||
<div class="offcanvas-body"> | ||
<ul class="navbar-nav flex-grow-1 pe-3"> | ||
<li class="nav-item"> | ||
<a class="nav-link" aria-current="page" href="cuentasActivas.php"><i class="fa-solid fa-chart-line"></i> Cuentas Activas </a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" aria-current="page" href="clientes.php"><i class="fa-solid fa-id-card-clip"></i> Clientes </a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="historialPagos.php"><i class="fa-solid fa-file-invoice-dollar"></i> Historial de pagos </a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="ajustes.php"><i class="fa-solid fa-gears"></i> Ajustes </a> | ||
</li> | ||
<li class="nav-item mt-4"> | ||
<a class="nav-link" href="../index.php"> <i class="fa-solid fa-chevron-left"></i> Salir</a> | ||
</li> | ||
</div> | ||
</div> | ||
</div> | ||
</nav> | ||
<h1>Control de cuentas</h1> | ||