-
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.
Add crearUser, Login, Nosotros sucess
- Loading branch information
Showing
12 changed files
with
199 additions
and
49 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 |
---|---|---|
|
@@ -2,7 +2,8 @@ | |
<html> | ||
<head> | ||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-xOolHFLEh07PJGoPkLv1IbcEPTNtaed2xpHsD9ESMhqIYd0nLMwNLD69Npy4HI+N" crossorigin="anonymous"> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" | ||
rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous"> | ||
<title>Alejandria Login</title> | ||
</head> | ||
<body style="background: #989898;"> | ||
|
@@ -42,9 +43,11 @@ | |
<input type="password" name="clave" class="form-control"> | ||
<input type="submit" value="Olvide mi contraseña" class="btn btn-link"> | ||
</div> | ||
|
||
<br> | ||
<input type="submit" value="Login" class="btn btn-primary"> | ||
<input type="reset" value="Limpiar" class="btn btn-warning"> | ||
<input type="submit" value="Atras" class="btn btn-info" > | ||
|
||
</form> | ||
</div> | ||
</div> | ||
|
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
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,53 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" | ||
rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous"> | ||
<title>Alejandria Login</title> | ||
</head> | ||
<body style="background: #989898;"> | ||
<div class="container mt-4 col-4"> | ||
<div class="card col-sm-10"> | ||
<div class="card-body"> | ||
<form class="form-sign" action="indexNoUser.php" method="POST"> | ||
<div class="form-group text-center"> | ||
<h3>Crear cuenta</h3> | ||
<img src="img/logoBiblioteca.png" alt="70" width="170"/> | ||
<label style="display: block">Gestos de Biblioteca</label> | ||
</div> | ||
<div class="form-group"> | ||
<label>Digite usuario</label> | ||
<input type="text" name="txtuser" class="form-control"> | ||
</div> | ||
<div class="form-group"> | ||
<label>Digite Contraseña:</label> | ||
<input type="password" name="txtpass" class="form-control"> | ||
</div> | ||
<div class="form-group"> | ||
<label>Digite Correo:</label> | ||
<input type="email" name="txtuser" class="form-control"> | ||
</div> | ||
<div class="form-group"> | ||
<label>Digite Dni:</label> | ||
<input type="number" name="txtuser" class="form-control"> | ||
</div> | ||
<br> | ||
<input type="submit" name="accion" value="Enviar" class="btn btn-primary"> | ||
<input type="reset" name="accion" value="Limpiar" class="btn btn-warning"> | ||
<input type="submit" value="Atras" class="btn btn-info" > | ||
</form> | ||
</div> | ||
</div> | ||
</div> | ||
<script src="https://kit.fontawesome.com/9dbadc2946.js" crossorigin="anonymous"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" | ||
integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p" crossorigin="anonymous"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" | ||
integrity="sha384-cVKIPhGWiC2Al4u+LWgxfKTRIcfu0JTxR+EQDz/bgldoEyl4H0zUF0QKbrJ0EcQF" crossorigin="anonymous"></script> | ||
</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
This file was deleted.
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,31 @@ | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" | ||
rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous"> | ||
<link rel="stylesheet" href="estilos.css"> | ||
|
||
<title>index</title> | ||
</head> | ||
<body> | ||
|
||
<header> | ||
<?php include('Encabezado.php'); ?> | ||
</header> | ||
|
||
<main> | ||
<?php include('Carrusel.php'); ?> | ||
</main> | ||
|
||
<footer> | ||
<?php include('Pie.php'); ?> | ||
</footer> | ||
|
||
<script src="https://kit.fontawesome.com/9dbadc2946.js" crossorigin="anonymous"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" | ||
integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p" crossorigin="anonymous"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" | ||
integrity="sha384-cVKIPhGWiC2Al4u+LWgxfKTRIcfu0JTxR+EQDz/bgldoEyl4H0zUF0QKbrJ0EcQF" crossorigin="anonymous"></script> | ||
</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,49 @@ | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" | ||
rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous"> | ||
<link rel="stylesheet" href="estilos.css"> | ||
|
||
<title>index</title> | ||
</head> | ||
<body> | ||
|
||
<header> | ||
<?php include('Encabezado.php'); ?> | ||
</header> | ||
|
||
<main> | ||
<?php include('Carrusel.php'); ?> | ||
<div class="biblioteca-info"> | ||
<h2>Biblioteca Alexandria</h2> | ||
<p>Biblioteca Alexandria es una institución dedicada a la promoción de la lectura y el aprendizaje. | ||
<br>Ofrecemos una amplia variedad de libros, recursos digitales y espacios para el estudio y la investigación.</p> | ||
|
||
<h3><b>Contacto</b></h3> | ||
<p><b>Dirección:</b> Calle 123, Ciudad Perdida</p> | ||
<p><b>Teléfono:</b> +123 456 7890</p> | ||
<p><b>Email:</b> [email protected]</p> | ||
|
||
<h3>Redes Sociales</h3> | ||
<p>Síguenos en:</p> | ||
<ul> | ||
<li><i class="fa-brands fa-facebook"></i><a href="" target="_blank"> Facebook</a></li> | ||
<li><i class="fa-brands fa-twitter"></i><a href="" target="_blank"> Twitter</a></li> | ||
<li><i class="fa-brands fa-instagram"></i><a href="" target="_blank"> Instagram</a></li> | ||
</ul> | ||
</div> | ||
</main> | ||
|
||
<footer> | ||
<?php include('Pie.php'); ?> | ||
</footer> | ||
|
||
<script src="https://kit.fontawesome.com/9dbadc2946.js" crossorigin="anonymous"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" | ||
integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p" crossorigin="anonymous"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" | ||
integrity="sha384-cVKIPhGWiC2Al4u+LWgxfKTRIcfu0JTxR+EQDz/bgldoEyl4H0zUF0QKbrJ0EcQF" crossorigin="anonymous"></script> | ||
</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 |
---|---|---|
|
@@ -2,8 +2,6 @@ | |
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" | ||
rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous"> | ||
<title>Pie de Pagina</title> | ||
</head> | ||
<body> | ||
|
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
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
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 |
---|---|---|
@@ -1,5 +1,7 @@ | ||
browser.id=Chrome | ||
copy.src.files=false | ||
copy.src.on.open=false | ||
index.file=index.php | ||
copy.src.target= | ||
index.file=indexNoUser.php | ||
run.as=LOCAL | ||
url=http://localhost/BibliotecaAlexandriaPhp/ |