-
Notifications
You must be signed in to change notification settings - Fork 15
/
validar.php
69 lines (52 loc) · 1.63 KB
/
validar.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
65
66
67
68
69
<?php require("db/config.php");?>
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width; initial-sacale=1.0">
<title>SumiPan Los LLanos</title>
<!-- CSS -->
<link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.min.css">
<!-- JS -->
<script src="bootstrap/js/jquery.min.js" type="text/javascript"></script>
<script src="bootstrap/js/bootstrap.min.js" type="text/javascript"></script>
<script src="bootstrap/js/jquery.validate.js" type="text/javascript"></script>
<?php require("bootstrap/js/validar.js");?>
</head>
<body>
<br><br>
<center>
<img src="img/sumipan.png" width="300px" height="70px" class="img-responsive" alt="SumiPan Los Llanos C.A.">
<br>
</center>
<div style="margin-top:-10px" class="container-fluid">
</br>
<?php if(isset($_GET["nueva_clave"])){ ?>
<h1 align="center">Nueva Contraseña</h1>
<?php }else{ ?>
<h1 align="center">Verifica Tus Datos</h1>
<?php } ?>
<div class="col-md-6 col-md-offset-3 ">
<div id="respuesta"></div>
<?php
if(isset($_GET["respuesta"])){
include("verificar_respuesta.php");
}
elseif(isset($_GET["nueva_clave"])){
include("nueva_clave.php");
}
else{
include("verificar_correo.php");
}
?>
<br>
<div style="margin-bottom: 20px;" align="right" class="form-group">
<div class="col-sm-12"> <br>
<a href="index.php">¿Ya Tienes Cuenta.? Inicia Sesion</a>
</div>
</div><br>
</div>
</div>
</body>
</html>