-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
64 lines (58 loc) · 2.03 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?php
include 'controllers/control.php';
?>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<title>Login</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="css/estilo.css">
<link rel="stylesheet" type="text/css" href="css/style1.css">
</head>
<body>
<nav class="navbar navbar-light" he style="background-color: #EEEB2B">
<a href="index.php"><img id=logo1 src="img/logo.png"></a>
</nav>
<div class="modal-dialog text-center">
<div class="col-sm-10">
<div class="modal-content" id="der">
<br>
<br>
<h4> Inicio de sesión </h4>
<hr>
<div class="col-12">
<img id="logo" src="img/ini.png">
<h1> Beth-el </h1>
</div>
<form class="col-12" action="" method="POST">
<div class="form-group">
<input type="email" name="username" class="form-control" placeholder="Correo Electrónico" require>
</div>
<div class="form-group">
<input type="password" name="password" class="form-control" placeholder="Contraseña">
</div>
<div>
<div>
<button class="btn btn-primary" name="submit" type="submit">Siguiente </button>
</div>
<a href="view/registroCliente.php">Crear cuenta</a>
<div align="left">
<a href="view/resPass.php">¿Has olvidado tu contraseña?</a>
</div>
</div>
<br>
</form>
</div>
</div>
</div>
</body>
<footer id="footer01"><! -- Datos Institucionales -->
<div class="modal-right text-right">
<small> Heroica Ciudad de Tlaxiaco, Oaxaca.</small><! -- Etiqueta small es para textos legales. -->
<address>
Telefono: 9531563919
</address>
</div>
</footer>
</html>