Skip to content

Commit

Permalink
Añadido estilo a la lectura QR
Browse files Browse the repository at this point in the history
  • Loading branch information
Francisco Baena committed Apr 12, 2013
1 parent a06ebec commit 03107ce
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 10 deletions.
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,18 +110,17 @@ codes -> id[int] type[int] code[varchar32]
-[x]: CREA UNA FUNCIÓN QUE GENERE UN CÓDIGO QR

-[x]: [/getReader/index.php] HACER QUE LA PÁGINA REDIRIJA A CADA USUARIO A LA WEB DONDE PUEDE DESCARGAR CADA LECTOR QR (si hay manera de hacer que se abra en su store, guay)
-[ ]: [/ranking/index.php] REPRESENTAR EL RANKING
-[x]: [/ranking/index.php] REPRESENTAR EL RANKING
-[ ]: [/ranking/index.php][JS/HTML] HACER QUE LA PÁGINA SE ACTUALICE CADA x TIEMPO
-[ ]: [/register/#codigo] GUARDA UNA COOKIE DE 7 HORAS CON EL CÓDIGO DE USUARIO
-[ ]: [/register/#codigo] GUARDA UNA COOKIE DE 7 HORAS CON EL CÓDIGO DE USUARIO <- problemas


-[HTML/CSS]
-[x]: CREAR ESTILO PRINCIPAL
-[x]: [/index.php] PÁGINA DE INICIO QUE DÉ INFORMACIÓN SOBRE EL JUEGO Y TENGA UN LINK A LA WEB DE LA ESCUELA Y OTRO A LA WEB QUE TE REDIRIGE A LA WEB DONDE PUEDES OBTENER EL LECTOR QR
-[ ]: [ranking/index.php] INTERFAZ DEL RANKING (posicion/nombre de usuario/puntos)
-[ ]: [/register/#codigo] CREAR PANTALLA QUE MUESTRE "USUARIO nombre REGISTRADO EN EL JUEGO"
-[x]: [ranking/index.php] INTERFAZ DEL RANKING (posicion/nombre de usuario/puntos)
-[ ]: [/register/user/index.php] CREAR PANTALLA QUE MUESTRE DATOS SOBRE EL USUARIO
-[x]: [/register/index.php] INTERFAZ DE REGISTRO DE USUARIO
-[ ]: [/admin/index.php] CREA UN PANEL DE ADMINISTRACIÓN
-[ ]: [/user/index.php] MUESTRA INFORMACIÓN SOBRE EL USUARIO Y SU PUNTUACIÓN
-[ ]: [/shoot/index.php] MUESTRA INFORMACIÓN SOBRE UN DISPARO REALIZADO [HAS GANADO x PUNTOS/YA HABÍAS DISPARADO AQUÍ]
31 changes: 26 additions & 5 deletions register/setCookie/index.php
Original file line number Diff line number Diff line change
@@ -1,13 +1,34 @@
<?php
// -/register/index.php
$agent = $_SERVER['HTTP_USER_AGENT'];
if(preg_match('/iPhone/i', $agent)){
echo 'Haz click en los tres puntitos de abajo y selecciona "Abrir en Safari"<br><br>';
echo 'Luego <a href="http://fran.local/juego/register/setCookie/forceRegister.php?code='.substr($_SERVER['QUERY_STRING'],1).'">Pincha aqui</a>';
} else {
if(!preg_match('/iPhone/i', $agent)){
include("../../functions.php");
setUserCookie(substr($_SERVER['QUERY_STRING'],1));
header("Location: ../../user");
}

?>

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Detectando...</title>
<link rel="stylesheet" href="../../css/bootstrap.min.css">
<link rel="stylesheet" href="../../css/style.css">
</head>
<body>
<div class="container">
<div class="masthead">
<img src="../../img/logoetsii.png" width="40px" height="auto" class="alignleft" style="margin-right:3px"><h3 class="muted">ETSI Informática</h3>
</div>

<div class="jumbotron">
<h1>Abre el link en Safari</h1>
<h3>Abajo a mano derecha tienes el icono de Safari</h3>
<br>
<a class="btn btn-large btn-success" href="http://fran.local/juego/register/setCookie/forceRegister.php?code=<?php echo substr($_SERVER['QUERY_STRING'],1); ?>">Cuando abras SAFARI pincha aquí</a>
<hr>
</div>
</div>
</body>
</html>

0 comments on commit 03107ce

Please sign in to comment.