From dad5f7b3e1200bff9a0a3b409e7e808659f9f549 Mon Sep 17 00:00:00 2001 From: david Date: Sat, 22 Sep 2012 14:08:49 +0000 Subject: [PATCH] =?UTF-8?q?Tarea=20#1094=20->=20Revisar=20el=20cambio=20de?= =?UTF-8?q?l=20men=C3=BA=20superior=20e=20inferior=20en=20todas=20las=20p?= =?UTF-8?q?=C3=A1ginas?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_PROFIND_Aterrizaje/trunk@12 db07b8d6-80f3-1c4e-84de-227a4fed3af2 --- src/contactar.html | 12 +++--- src/css/style.css | 1 + src/index.html | 78 ++++++++++++++++++------------------ src/politica-privacidad.html | 14 +++---- src/prensa.html | 8 ++-- src/productos.html | 56 +++++++++++++------------- src/que-es-profind.html | 66 +++++++++++++++--------------- src/soporte.html | 10 ++--- src/terminos-uso.html | 10 ++--- 9 files changed, 128 insertions(+), 127 deletions(-) diff --git a/src/contactar.html b/src/contactar.html index 4d2b1cc..f6f76e7 100644 --- a/src/contactar.html +++ b/src/contactar.html @@ -23,7 +23,7 @@
@@ -96,7 +96,7 @@
- image + image @@ -108,13 +108,13 @@
-
+
@@ -124,7 +124,7 @@
Síguenos en:
    -
  • icon
  • +
  • icon
  • icon
  • icon
diff --git a/src/css/style.css b/src/css/style.css index 2ec93b6..141aa2a 100644 --- a/src/css/style.css +++ b/src/css/style.css @@ -670,6 +670,7 @@ span.valid { } #footer .nav-tabs > li > a:hover, .nav-tabs > .active > a { border: 0; + color: #fff !important; } diff --git a/src/index.html b/src/index.html index 30fde2c..eb05978 100644 --- a/src/index.html +++ b/src/index.html @@ -26,7 +26,7 @@
@@ -112,17 +112,17 @@
-
-
-
-
+
+
+
+
@@ -196,17 +196,17 @@ type: 'POST', data : $form.serialize()+'&ajax=login-form', success: function(data, textStatus, XMLHttpRequest) { - if (data.status == '200') { - window.location.href = data.redirect; - } - else { - if (data != null && typeof data == 'object') { - $('#resultado').val(''); - $.each(data, function(key, value){ - $('#resultado').append(key + ' => ' + value); - }); - } - } + if (data.status == '200') { + window.location.href = data.redirect; + } + else { + if (data != null && typeof data == 'object') { + $('#resultado').val(''); + $.each(data, function(key, value){ + $('#resultado').append(key + ' => ' + value); + }); + } + } }, error: function(XMLHttpRequest, textStatus, errorThrown) { $('#resultado').append('Error de comunicación con el servidor'); @@ -216,9 +216,9 @@ }; $("#entrarForm").validate({ - onfocusout: false, - onkeyup: false, - onclick: false, + onfocusout: false, + onkeyup: false, + onclick: false, rules:{ FormularioLogin_email:{ required:true, @@ -248,7 +248,7 @@ submitHandler: enviar_login }); - var enviar_registro = function() { + var enviar_registro = function() { var $form = $("#registroForm"); $.ajax({ url: $form.attr('action'), @@ -256,17 +256,17 @@ type: 'POST', data : $form.serialize()+'&ajax=registro-form', success: function(data, textStatus, XMLHttpRequest) { - if (data.status == '200') { - $('#resultado').append(data.texto); - } - else { - if (data != null && typeof data == 'object') { - $('#resultado').val(''); - $.each(data, function(key, value){ - $('#resultado').append(key + ' => ' + value); - }); - } - } + if (data.status == '200') { + $('#resultado').append(data.texto); + } + else { + if (data != null && typeof data == 'object') { + $('#resultado').val(''); + $.each(data, function(key, value){ + $('#resultado').append(key + ' => ' + value); + }); + } + } }, error: function(XMLHttpRequest, textStatus, errorThrown) { $('#resultado').append('Error de comunicación con el servidor'); @@ -276,9 +276,9 @@ }; $("#registroForm").validate({ - onfocusout: false, - onkeyup: false, - onclick: false, + onfocusout: false, + onkeyup: false, + onclick: false, rules:{ FormularioRegistro_email:{ required:true, @@ -290,7 +290,7 @@ }, FormularioRegistro_password2:{ required:true, - minlength: 6, + minlength: 6, equalTo: "#FormularioRegistro_password" }, FormularioRegistro_acepto:{ @@ -308,7 +308,7 @@ }, FormularioRegistro_password2:{ required:"Introduzca otra vez la contraseña", - minlength:"La contraseña debe tener un mínimo de 6 caracteres", + minlength:"La contraseña debe tener un mínimo de 6 caracteres", equalTo:"La confirmación de contraseña no coincide con la contraseña" }, FormularioRegistro_acepto:"" @@ -321,7 +321,7 @@ unhighlight: function(element, errorClass, validClass) { $(element).parents('.control-group').removeClass('error'); }, - submitHandler: enviar_registro + submitHandler: enviar_registro }); }); diff --git a/src/politica-privacidad.html b/src/politica-privacidad.html index 637813d..617e20c 100644 --- a/src/politica-privacidad.html +++ b/src/politica-privacidad.html @@ -23,7 +23,7 @@ @@ -366,8 +366,8 @@

Información y Quejas

Inselsoft S.L.
- C/ Alcalá 257 Oficina 1
- 28027-Madrid (España)

+ C/ Alcalá 257 Oficina 1
+ 28027-Madrid (España)

Esta Política de Privacidad entra en vigor en Septiembre de 2012.

@@ -380,13 +380,13 @@
-
+
@@ -396,7 +396,7 @@
Síguenos en:
    -
  • icon
  • +
  • icon
  • icon
  • icon
diff --git a/src/prensa.html b/src/prensa.html index e8f8f7a..884feeb 100644 --- a/src/prensa.html +++ b/src/prensa.html @@ -23,7 +23,7 @@ @@ -45,13 +45,13 @@
-
+
@@ -61,7 +61,7 @@
Síguenos en:
    -
  • icon
  • +
  • icon
  • icon
  • icon
diff --git a/src/productos.html b/src/productos.html index d64481c..14bbdd4 100644 --- a/src/productos.html +++ b/src/productos.html @@ -28,7 +28,7 @@
@@ -48,67 +48,67 @@

¡ Recuerde Ud. Crea su Cuenta Individual con una Publicación GRATIS y comienza a utilizar inmediatamente el producto durante 1 mes ! -

+

-
-
-
-
-

Cuenta individual

+
+
+
+
+

Cuenta individual

    -
  • 5 Publicaciones 80 euros/mes
  • -
  • 10 Publicaciones 120 euros/mes
  • -
  • 20 Publicaciones 180 euros/mes
  • +
  • 5 Publicaciones 80 euros/mes
  • +
  • 10 Publicaciones 120 euros/mes
  • +
  • 20 Publicaciones 180 euros/mes
-
+
-

Cuenta para equipos (Publicaciones Ilimitadas)

+

Cuenta para equipos (Publicaciones Ilimitadas)

    -
  • Hasta 5 Agentes 500 euros/mes
  • -
  • Hasta 10 Agentes 800 euros/mes
  • -
  • Hasta 20 Agentes 1.200 euros/mes
  • +
  • Hasta 5 Agentes 500 euros/mes
  • +
  • Hasta 10 Agentes 800 euros/mes
  • +
  • Hasta 20 Agentes 1.200 euros/mes
-
+
-
-
-

Su Alta le será Confirmada por email.

-
+
+
+

Su Alta le será Confirmada por email.

+
- -
+ +

Otras Configuraciones: Infórmese en Contactar Página Home

- - + +