Add files via upload
This commit is contained in:
parent
1b64bce911
commit
4339a5db1e
@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
/* Headers */
|
/* Headers */
|
||||||
h1, h2, h3, h4 {
|
h1, h2, h3, h4 {
|
||||||
color: #363636;
|
color: #d3ebff;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
@ -328,13 +328,6 @@
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
height: 250px;
|
height: 250px;
|
||||||
}
|
}
|
||||||
.code.info #register{
|
|
||||||
border: 1px solid#d3ebff;
|
|
||||||
}
|
|
||||||
.code.info #register:hover {
|
|
||||||
color: #1f2c3d;
|
|
||||||
background-color: #d3ebff;
|
|
||||||
}
|
|
||||||
.code.showtimes{
|
.code.showtimes{
|
||||||
height: 600px;
|
height: 600px;
|
||||||
}
|
}
|
||||||
|
@ -327,9 +327,6 @@ main img {
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
height: 250px;
|
height: 250px;
|
||||||
}
|
}
|
||||||
.code.info #register{
|
|
||||||
border: 1px solid#d3ebff;
|
|
||||||
}
|
|
||||||
.code.showtimes{
|
.code.showtimes{
|
||||||
height: 600px;
|
height: 600px;
|
||||||
}
|
}
|
||||||
|
@ -93,7 +93,7 @@
|
|||||||
public function selectUserName($username){
|
public function selectUserName($username){
|
||||||
$username = $this->mysqli->real_escape_string($username);
|
$username = $this->mysqli->real_escape_string($username);
|
||||||
|
|
||||||
$sql = sprintf( "SELECT * FROM users WHERE name = '%s'", $username );
|
$sql = sprintf( "SELECT * FROM users WHERE username = '%s'", $username );
|
||||||
$resul = mysqli_query($this->mysqli, $sql);
|
$resul = mysqli_query($this->mysqli, $sql);
|
||||||
|
|
||||||
return $resul;
|
return $resul;
|
||||||
|
@ -209,14 +209,14 @@
|
|||||||
|
|
||||||
if($_SESSION["rol"] === $panel){
|
if($_SESSION["rol"] === $panel){
|
||||||
echo"<div class='header sub'>
|
echo"<div class='header sub'>
|
||||||
<div class='menu'>
|
<div class='menu'>
|
||||||
<nav>";
|
<nav>";
|
||||||
foreach($menus as $value){
|
foreach($menus as $value){
|
||||||
echo $value;
|
echo $value;
|
||||||
}
|
}
|
||||||
echo"</nav>
|
echo"</nav>
|
||||||
</div>
|
</div>
|
||||||
</div>\n";
|
</div>\n";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
//General Config File:
|
//General Config File:
|
||||||
require_once(__DIR__.'/assets/php/config.php');
|
require_once(__DIR__.'/assets/php/config.php');
|
||||||
|
|
||||||
|
|
||||||
?>
|
?>
|
||||||
<!--
|
<!--
|
||||||
Práctica - Sistemas Web | Grupo D
|
Práctica - Sistemas Web | Grupo D
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* USUARIOS DE PRUEBAS:
|
* USUARIOS DE PRUEBAS:
|
||||||
* user | userpass
|
* user | userpass
|
||||||
@ -15,6 +14,7 @@
|
|||||||
require('login_register_view.php');
|
require('login_register_view.php');
|
||||||
$view = new LoginRegisterView();
|
$view = new LoginRegisterView();
|
||||||
$isLogin = $view->getIsLogin();
|
$isLogin = $view->getIsLogin();
|
||||||
|
|
||||||
//Forms:
|
//Forms:
|
||||||
require('includes/formLogin.php');
|
require('includes/formLogin.php');
|
||||||
require($prefix.'register/includes/formRegister.php');
|
require($prefix.'register/includes/formRegister.php');
|
||||||
@ -57,7 +57,7 @@
|
|||||||
<p>Para crear una cuenta de usuario es necesario haber rellenado el formulario de registro previamente</p>
|
<p>Para crear una cuenta de usuario es necesario haber rellenado el formulario de registro previamente</p>
|
||||||
<p>Haz click en el botón para registrate.</p>
|
<p>Haz click en el botón para registrate.</p>
|
||||||
<form method='post'>
|
<form method='post'>
|
||||||
<button type='submit' name='register' id='register'>Registrate</button>
|
<button type='submit' name='register' id='_register'>Registrate</button>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -78,7 +78,7 @@
|
|||||||
<p>Si dispones de una cuenta de usuario, no es necesario que rellenes este formulario nuevamente</p>
|
<p>Si dispones de una cuenta de usuario, no es necesario que rellenes este formulario nuevamente</p>
|
||||||
<p>Haz click en el botón para iniciar sesión.</p>
|
<p>Haz click en el botón para iniciar sesión.</p>
|
||||||
<form method='post'>
|
<form method='post'>
|
||||||
<button type='submit' name='login' id='login'>Inicia Sesión</button>
|
<button type='submit' name='login' id='_login'>Inicia Sesión</button>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
</div>"."\n";
|
</div>"."\n";
|
||||||
|
@ -78,7 +78,7 @@ class FormDeleteAccount extends Form {
|
|||||||
$bd->deleteUserAccount($user->getId());
|
$bd->deleteUserAccount($user->getId());
|
||||||
unset($_SESSION);
|
unset($_SESSION);
|
||||||
session_destroy();
|
session_destroy();
|
||||||
|
|
||||||
$result = ROUTE_APP;
|
$result = ROUTE_APP;
|
||||||
} else {
|
} else {
|
||||||
$result[] = "Los datos introducidos\nno son válidos.";
|
$result[] = "Los datos introducidos\nno son válidos.";
|
||||||
|
@ -60,19 +60,21 @@
|
|||||||
?>
|
?>
|
||||||
|
|
||||||
<!-- Panel -->
|
<!-- Panel -->
|
||||||
<div class="row">
|
<section id="user_panel">
|
||||||
<!-- Panel Menu -->
|
|
||||||
<?php
|
|
||||||
$template->print_panelMenu($_SESSION["rol"]);
|
|
||||||
?>
|
|
||||||
<!-- Contents -->
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
<!-- Panel Menu -->
|
||||||
<?php
|
<?php
|
||||||
$template->print_msg();
|
$template->print_panelMenu($_SESSION["rol"]);
|
||||||
echo $reply;
|
|
||||||
?>
|
?>
|
||||||
|
<!-- Contents -->
|
||||||
|
<div class="row">
|
||||||
|
<?php
|
||||||
|
$template->print_msg();
|
||||||
|
echo $reply;
|
||||||
|
?>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</section>
|
||||||
<!-- Footer -->
|
<!-- Footer -->
|
||||||
<?php
|
<?php
|
||||||
$template->print_footer();
|
$template->print_footer();
|
||||||
|
@ -18,17 +18,17 @@ class FormRegister extends Form {
|
|||||||
//Methods:
|
//Methods:
|
||||||
|
|
||||||
protected function generaCamposFormulario($datos, $errores = array()){
|
protected function generaCamposFormulario($datos, $errores = array()){
|
||||||
$nombre = $datos['name'] ?? '';
|
//$nombre = $datos['name'] ?? '';
|
||||||
|
|
||||||
// Se generan los mensajes de error si existen.
|
// Se generan los mensajes de error si existen.
|
||||||
$htmlErroresGlobales = self::generaListaErroresGlobales($errores);
|
$htmlErroresGlobales2 = self::generaListaErroresGlobales($errores);
|
||||||
$errorNombre = self::createMensajeError($errores, 'name', 'span', array('class' => 'error'));
|
$errorNombre = self::createMensajeError($errores, 'name', 'span', array('class' => 'error'));
|
||||||
$errorEmail = self::createMensajeError($errores, 'email', 'span', array('class' => 'error'));
|
$errorEmail = self::createMensajeError($errores, 'email', 'span', array('class' => 'error'));
|
||||||
$errorPassword = self::createMensajeError($errores, 'pass', 'span', array('class' => 'error'));
|
$errorPassword = self::createMensajeError($errores, 'pass', 'span', array('class' => 'error'));
|
||||||
$errorPassword2 = self::createMensajeError($errores, 'repass', 'span', array('class' => 'error'));
|
$errorPassword2 = self::createMensajeError($errores, 'repass', 'span', array('class' => 'error'));
|
||||||
|
|
||||||
$html = "<div class='row'>
|
$html = "<div class='row'>
|
||||||
<fieldset id='datos_personales'><pre>".$htmlErroresGlobales."</pre>
|
<fieldset id='datos_personales'><pre>".$htmlErroresGlobales2."</pre>
|
||||||
<legend>Datos personales</legend>
|
<legend>Datos personales</legend>
|
||||||
<input type='text' name='name' id='name' value='' placeholder='Nombre' required/><pre>".$errorNombre."</pre>
|
<input type='text' name='name' id='name' value='' placeholder='Nombre' required/><pre>".$errorNombre."</pre>
|
||||||
<input type='email' name='email' id='email' value='' placeholder='Email' required/><pre>".$errorEmail."</pre>
|
<input type='email' name='email' id='email' value='' placeholder='Email' required/><pre>".$errorEmail."</pre>
|
||||||
@ -75,7 +75,10 @@ class FormRegister extends Form {
|
|||||||
$bd = new UserDAO('complucine');
|
$bd = new UserDAO('complucine');
|
||||||
if($bd){
|
if($bd){
|
||||||
$this->user = $bd->selectUserName($nombre);
|
$this->user = $bd->selectUserName($nombre);
|
||||||
if (!$this->user) {
|
if ($this->user->data_seek(0)) {
|
||||||
|
$result[] = "El usuario ya existe.";
|
||||||
|
}
|
||||||
|
else{
|
||||||
$bd->createUser("", $nombre, $email, $password, "user");
|
$bd->createUser("", $nombre, $email, $password, "user");
|
||||||
$this->user = $bd->selectUser($nombre, $password);
|
$this->user = $bd->selectUser($nombre, $password);
|
||||||
if ($this->user) {
|
if ($this->user) {
|
||||||
@ -87,9 +90,6 @@ class FormRegister extends Form {
|
|||||||
$result = "../register/register.php";
|
$result = "../register/register.php";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else{
|
|
||||||
$result[] = "El usuario ya existe.";
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
$result[] = "Error al conectar con la BD.";
|
$result[] = "Error al conectar con la BD.";
|
||||||
}
|
}
|
||||||
|
@ -36,8 +36,6 @@
|
|||||||
<div class="code info">
|
<div class="code info">
|
||||||
<?php
|
<?php
|
||||||
echo $reply;
|
echo $reply;
|
||||||
//$formRegister = new FormRegister();
|
|
||||||
//echo $htmlFormRegister = $formRegister->gestiona();
|
|
||||||
?>
|
?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user