Está en la página 1de 4

Landing Page Prospect

Slider principal - Formulario

1. Elige tu Plan, se debe ingresar los Siguientes planes:


- Portabilidad Ichip+ 29.90
- Portabilidad Ichip+ 39.90
- Portabilidad Único 49.90
- Portabilidad Único 79.90
- Línea Nueva Ichip+ 29.90
- Línea Nueva Ichip+ 39.90
- Línea Nueva Único 49.90
- Línea Nueva Único 79.90

2. Campo de teléfono, se debe validar 9 dígitos y debe comenzar con 9


3. Se debe agregar otro checkbox de “Acepto los tratamiento de datos”
Section de Planes

Cada plan de Portabilidad y Linea nueva cuando el usuario presiona ver más detalle
debe tener el efecto de voltear como se da en el siguiente enlace
https://tienda.bitel.com.pe/plan_unico.php
https://tienda.bitel.com.pe/plan_ichip.php

Como se visualiza en celulares de 6.7”


Enlaces en botón lo quiero Portabilidad

https://tienda.bitel.com.pe/affiliate/postpago/portabilidad/ichip-plus-29_90?affiliate=1
Ichip 29.90 832
https://tienda.bitel.com.pe/affiliate/postpago/portabilidad/ichip-plus-39_90?affiliate=1
Ichip 39.90 832
Unico 49.90 https://tienda.bitel.com.pe/affiliate/postpago/portabilidad/unico-49_90?affiliate=1832
Unico 79.90 https://tienda.bitel.com.pe/affiliate/postpago/portabilidad/unico-79_90?affiliate=1832

Enlaces en botón lo quiero Linea Nueva


https://tienda.bitel.com.pe/affiliate/postpago/linea-
Ichip 29.90 nueva/ichip-plus-29_90?affiliate=1832
https://tienda.bitel.com.pe/affiliate/postpago/linea-
Ichip 39.90 nueva/ichip-plus-39_90?affiliate=1832
https://tienda.bitel.com.pe/affiliate/postpago/linea-
Unico 49.90 nueva/unico-49_90?affiliate=1832
https://tienda.bitel.com.pe/affiliate/postpago/linea-
Unico 79.90 nueva/unico-79_90?affiliate=1832

Coneccion del formulario con la DDBB mysql

SET NAMES utf8mb4;


SET FOREIGN_KEY_CHECKS = 0;

-- ----------------------------
-- Table structure for tbl_prospect_customer
-- ----------------------------
DROP TABLE IF EXISTS `tbl_prospect_customer`;
CREATE TABLE `tbl_prospect_customer` (
`prospect_customer_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT,
`cus_current_plan` varchar(150) CHARACTER SET utf8 COLLATE utf8_general_ci
NULL DEFAULT NULL,
`cus_name` varchar(150) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`cus_phone_number` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci
NOT NULL,
`cus_city` varchar(150) CHARACTER SET utf8 COLLATE utf8_general_ci NULL
DEFAULT NULL,
`is_accept_private_policy` tinyint(4) NOT NULL DEFAULT 1 COMMENT '1: valid; 0:
invalid',
`is_accept_data_treatment` tinyint(4) NOT NULL DEFAULT 1 COMMENT '1: valid; 0:
invalid',
`created_by` int(10) UNSIGNED NULL DEFAULT NULL COMMENT 'link to member_id',
`created_at` datetime(0) NULL DEFAULT NULL,
`updated_at` datetime(0) NULL DEFAULT NULL,
PRIMARY KEY (`prospect_customer_id`) USING BTREE,
INDEX `cus_phone_number`(`cus_phone_number`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 3 CHARACTER SET = utf8 COLLATE =
utf8_general_ci ROW_FORMAT = Dynamic;

SET FOREIGN_KEY_CHECKS = 1;

También podría gustarte