-
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.
Added a basic template for the home page.
- Loading branch information
Showing
1 changed file
with
43 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,43 @@ | ||
<!DOCTYPE html> | ||
<html lang="es"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | ||
<title>Inicio</title> | ||
<link rel="stylesheet" type="text/css" href="/static/css/styles.css"> | ||
<link rel="stylesheet" type="text/css" href="/static/css/icons.css"> | ||
<link rel="stylesheet" type="text/css" href="/static/css/bootstrap.min.css"> | ||
<link rel="stylesheet" type="text/css" href="/static/css/bootstrap-grid.min.css"> | ||
<link rel="stylesheet" type="text/css" href="/static/css/bootstrap-reboot.min.css"> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<div class="jumbotron jumbotron-fluid" style="margin-bottom: 0;"> | ||
<h1 class="display-8 text-center">Kenosis</h1> | ||
</div> | ||
<div class="card-group"> | ||
<div class="card bg-light mb-6 text-center" > | ||
<div class="card-body"> | ||
<h4 class="card-title">Realizar Venta</h4> | ||
<p class="card-text">Registrar la información relacionada con una venta.</p> | ||
<a href="venta/" class="btn btn-success">Entrar</a> | ||
</div> | ||
</div> | ||
<div class="card bg-light mb-6 text-center"> | ||
<div class="card-body"> | ||
<h4 class="card-title">Registar Gasto</h4> | ||
<p class="card-text">Registar la información relacionada con un gasto.</p> | ||
<a href="gasto/" class="btn btn-danger">Entrar</a> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="card bg-light mb-6 text-center"> | ||
<div class="card-body"> | ||
<h4 class="card-title">Consultar Balance de Cuenta</h4> | ||
<p class="card-text">Consulta la infromación sobre las ventas y los gastos del día.</p> | ||
<a href="#" class="btn btn-dark">Entrar</a> | ||
</div> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |