-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathregistro.php
85 lines (74 loc) · 2.08 KB
/
registro.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?php
require_once "clases/Conexion.php";
$obj= new conectar();
$conexion=$obj->conexion();
$sql="SELECT * from usuarios where email='admin'";
$result=mysqli_query($conexion,$sql);
$validar=0;
if(mysqli_num_rows($result) > 0){
header("location:index.php");
}
?>
<!DOCTYPE html>
<html>
<head>
<title>registro</title>
<link rel="stylesheet" type="text/css" href="librerias/bootstrap/css/bootstrap.css">
<script src="librerias/jquery-3.2.1.min.js"></script>
<script src="js/funciones.js"></script>
</head>
<body style="background-color: gray">
<br><br><br>
<div class="container">
<div class="row">
<div class="col-sm-4"></div>
<div class="col-sm-4">
<div class="panel panel-danger">
<div class="panel panel-heading">Registrar Administrador</div>
<div class="panel panel-body">
<form id="frmRegistro">
<label>Nombre</label>
<input type="text" class="form-control input-sm" name="nombre" id="nombre">
<label>Apellido</label>
<input type="text" class="form-control input-sm" name="apellido" id="apellido">
<label>Usuario</label>
<input type="text" class="form-control input-sm" name="usuario" id="usuario">
<label>Password</label>
<input type="text" class="form-control input-sm" name="password" id="password">
<p></p>
<span class="btn btn-primary" id="registro">Registrar</span>
<a href="index.php" class="btn btn-default">Regresar login</a>
</form>
</div>
</div>
</div>
<div class="col-sm-4"></div>
</div>
</div>
</body>
</html>
<script type="text/javascript">
$(document).ready(function(){
$('#registro').click(function(){
vacios=validarFormVacio('frmRegistro');
if(vacios > 0){
alert("Debes llenar todos los campos!!");
return false;
}
datos=$('#frmRegistro').serialize();
$.ajax({
type:"POST",
data:datos,
url:"procesos/regLogin/registrarUsuario.php",
success:function(r){
alert(r);
if(r==1){
alert("Agregado con exito");
}else{
alert("Fallo al agregar :(");
}
}
});
});
});
</script>