Add files via upload
This commit is contained in:
parent
b47eb7d516
commit
d216398b3a
@ -2,7 +2,7 @@
|
|||||||
session_start();
|
session_start();
|
||||||
|
|
||||||
require_once('../assets/php/template.php');
|
require_once('../assets/php/template.php');
|
||||||
require_once('./includes/user_dao.php');
|
require_once('./includes/formRegister.php');
|
||||||
|
|
||||||
$template = new Template();
|
$template = new Template();
|
||||||
|
|
||||||
@ -10,85 +10,21 @@
|
|||||||
$reg->testReg();
|
$reg->testReg();
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<?php
|
<!DOCTYPE HTML>
|
||||||
class Register {
|
|
||||||
// ATRIBUTOS
|
|
||||||
private $name;
|
|
||||||
private $email;
|
|
||||||
private $password;
|
|
||||||
private $repassword;
|
|
||||||
private $rol; // Desde aqui solo se registran usuarios finales, seran rol "user"
|
|
||||||
private $id; // Generado en la BD? Aleatorio?
|
|
||||||
private $reply;
|
|
||||||
|
|
||||||
// CONSTRUCTOR
|
|
||||||
function __construct() {}
|
|
||||||
|
|
||||||
// METODOS
|
|
||||||
public function testReg() {
|
|
||||||
$this->name = $this->test_input($_POST["name"]);
|
|
||||||
$this->email = $this->test_input($_POST["email"]);
|
|
||||||
$this->password = $this->test_input($_POST["pass"]);
|
|
||||||
$this->repassword = $this->test_input($_POST["repass"]);
|
|
||||||
$this->rol = "user";
|
|
||||||
$this->id = "xxxx";
|
|
||||||
|
|
||||||
// Creamos objetos
|
|
||||||
$instanceDAO = new UserDAO('complucine');
|
|
||||||
$uDTO = $instanceDAO->loadUser($this->id, $this->name, $this->email, $this->password, $this->rol);
|
|
||||||
|
|
||||||
if($this->password == $this->repassword) { // Comprobacion de contrasenyas iguales
|
|
||||||
$resultado = $instanceDAO->selectUser($uDTO->getName());
|
|
||||||
if($resultado->num_rows == 0) { // Comprobacion de que el usuario no existe ya en la BD
|
|
||||||
// Se manda el usuario al DAO, que lo creara en la BD
|
|
||||||
$instanceDAO->createUser($uDTO->getId(), $uDTO->getName(), $uDTO->getEmail(), $uDTO->getPass(), $uDTO->getRol());
|
|
||||||
|
|
||||||
$this->reply = "<h1>¡Éxito en el registro!</h1><hr/>
|
|
||||||
<p>{$_POST['name']}, te has registrado correctamente.</p>
|
|
||||||
<p>Puedes iniciar sesión en el siguiente enlace.</p>
|
|
||||||
<br>
|
|
||||||
<a href='./index.php'><button>Iniciar sesión</button></a>\n";
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
$this->reply = "<h1>¡Ha ocurrido un error!</h1><hr/>".
|
|
||||||
"<p>¡Ya existe un usuario con este nombre!</p>
|
|
||||||
<p>Vuelve a intetarlo o prueba a inicia sesión.</p>
|
|
||||||
<a href='./'><button>Iniciar Sesión</button></a>
|
|
||||||
<form method='post' action='./'><button name='register' id='register'>Registro</button></form>\n";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
$this->reply = "<h1>¡Ha ocurrido un error!</h1><hr/>".
|
|
||||||
"<p>Los datos introducidos no son válidos.</p>
|
|
||||||
<p>Vuelve a intetarlo o prueba a inicia sesión.</p>
|
|
||||||
<a href='./'><button>Iniciar Sesión</button></a>
|
|
||||||
<form method='post' action='./'><button name='register' id='register'>Registro</button></form>\n";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Metodo auxiliar que comprueba la validez de los parametros
|
|
||||||
private function test_input($input){
|
|
||||||
return htmlspecialchars(trim(strip_tags($input)));
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getReply() {
|
|
||||||
return $this->reply;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// CODIGO
|
|
||||||
echo '<!DOCTYPE HTML>
|
|
||||||
<!--
|
<!--
|
||||||
Práctica 2 - Sistemas Web | Grupo D
|
Práctica 2 - Sistemas Web | Grupo D
|
||||||
CompluCine - FDI-cines
|
CompluCine - FDI-cines
|
||||||
-->
|
-->
|
||||||
<html lang="es">
|
<html lang="es">
|
||||||
<!-- Head -->'.
|
<!-- Head -->
|
||||||
$template->print_head().'
|
<?php
|
||||||
|
$template->print_head();
|
||||||
|
?>
|
||||||
<body>
|
<body>
|
||||||
<!-- Header -->'.
|
<!-- Header -->
|
||||||
$template->print_header().'
|
<?php
|
||||||
|
$template->print_header();
|
||||||
|
?>
|
||||||
<!-- Main -->
|
<!-- Main -->
|
||||||
<div class="main">
|
<div class="main">
|
||||||
<div class="image"><img src="../img/logo_trasparente.png" /></div>
|
<div class="image"><img src="../img/logo_trasparente.png" /></div>
|
||||||
@ -99,16 +35,19 @@ echo '<!DOCTYPE HTML>
|
|||||||
<div class ="row">
|
<div class ="row">
|
||||||
<div class="column side"></div>
|
<div class="column side"></div>
|
||||||
<div class="column middle">
|
<div class="column middle">
|
||||||
<div class="code info">'.
|
<div class="code info">
|
||||||
$reg->getReply().'
|
<?php
|
||||||
|
echo $reg->getReply();
|
||||||
|
?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="column side"></div>
|
<div class="column side"></div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<!-- Footer -->'.
|
<!-- Footer -->
|
||||||
$template->print_footer().'
|
<?php
|
||||||
|
$template->print_footer();
|
||||||
|
?>
|
||||||
</body>
|
</body>
|
||||||
</html>\n';
|
</html>
|
||||||
?>
|
|
Loading…
Reference in New Issue
Block a user