diff --git a/@salix/crud/src/crud.js b/@salix/crud/src/crud.js
index c8d4fb17d..97fab6b54 100644
--- a/@salix/crud/src/crud.js
+++ b/@salix/crud/src/crud.js
@@ -17,6 +17,9 @@ export {NAME as CUSTOMER_DATA_BASIC_INDEX,
COMPONENT as CUSTOMER_DATA_BASIC_INDEX_COMPONENT} from './customer/dataBasic';
+export {NAME as CUSTOMER_WEB_CLIENT_INDEX,
+ COMPONENT as CUSTOMER_WEB_CLIENT_INDEX_COMPONENT} from './customer/webclient';
+
export {NAME as NAVIGATION_INDEX,
COMPONENT as NAVIGATION_INDEX_COMPONENT} from './navigation/index';
diff --git a/@salix/crud/src/customer/routes.js b/@salix/crud/src/customer/routes.js
index 572b37775..4bf9f74fb 100644
--- a/@salix/crud/src/customer/routes.js
+++ b/@salix/crud/src/customer/routes.js
@@ -33,5 +33,14 @@
module: 'crud',
description: '',
image: ''
+},
+{
+ url: '/customer/webclient',
+ state: 'customer-web-client',
+ template: '',
+ module: 'crud',
+ description: '',
+ image: ''
}
+
]
diff --git a/@salix/crud/src/customer/webclient/index.html b/@salix/crud/src/customer/webclient/index.html
new file mode 100644
index 000000000..e065cd47b
--- /dev/null
+++ b/@salix/crud/src/customer/webclient/index.html
@@ -0,0 +1,14 @@
+
+
+ CLIENTE_acceso web
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/@salix/crud/src/customer/webclient/index.js b/@salix/crud/src/customer/webclient/index.js
new file mode 100644
index 000000000..b9207f05e
--- /dev/null
+++ b/@salix/crud/src/customer/webclient/index.js
@@ -0,0 +1,8 @@
+import template from './index.html';
+import {module} from '../../module';
+
+export const NAME = 'customerWebClient';
+export const COMPONENT = {
+ template: template
+};
+module.component(NAME, COMPONENT);
\ No newline at end of file