codigo actual del servidor, con avances de joan

This commit is contained in:
Jose Sanchez
2023-08-07 15:52:04 -04:00
commit 3cd9b8bbe8
3070 changed files with 532255 additions and 0 deletions

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,136 @@
$(document).ready(function() {
'use strict';
// /*-------------------------------------
// Sticky NabBar
// -------------------------------------*/
// $(window).on('scroll', function () {
// var scroll = $(window).scrollTop();
// if (scroll >= 1) {
// $('.ugf-nav-wrap').addClass('fixed');
// } else {
// $('.ugf-nav-wrap').removeClass('fixed');
// }
// });
/*--------------------------------------------
File Input
--------------------------------------------*/
// function handleChange(inputId) {
// var fileUploader = document.getElementById(inputId);
// var getFile = fileUploader.files
// var uploadedFile = getFile[getFile.length - 1];
// readFile(uploadedFile, inputId);
// }
// $('.input-file').on('change', function(e) {
// handleChange(e.target.id);
// })
// function readFile(uploadedFile, inputId) {
// if (uploadedFile) {
// var reader = new FileReader();
// reader.onload = () => {
// var parent = document.getElementById('p-' + inputId);
// parent.innerHTML = `<img class="preview-content img-fluid" src=${reader.result} />`;
// };
// reader.readAsDataURL(uploadedFile);
// }
// };
/*--------------------------------------------
togglePassword
--------------------------------------------*/
function togglePassword(){
let input = document.getElementById("inputPass");
var eye = document.getElementById("eye");
var eyeSlash = document.getElementById("eye-slash");
if(input.type === "password"){
input.type = "text"
eye.style.display = "none";
eyeSlash.style.display = "inline";
} else {
input.type = "password"
eye.style.display = "inline";
eyeSlash.style.display = "none";
}
}
$('.pass-toggler-btn').on('click', 'i', function() {
togglePassword();
})
/*--------------------------------------------
Owl Carousel
--------------------------------------------*/
$('.testimonial-carousel').owlCarousel({
loop:true,
items: 1,
autoplay: true,
autoplayHoverPause: true,
dots: true,
nav: false,
autoplaySpeed: 600,
dotsSpeed: 600,
margin: 15
})
// $('.ugf-slider').owlCarousel({
// loop:true,
// items: 1,
// autoplay: true,
// autoplayHoverPause: true,
// dots: true,
// nav: false,
// autoplaySpeed: 600,
// dotsSpeed: 600,
// margin: 15
// })
/*--------------------------------------------
Country Select
--------------------------------------------*/
// $("#country").countrySelect();
// var windowWidth = $(window).width();
// $(window).resize(function() {
// if(windowWidth != $(window).width()) {
// countryList()
// }
// });
// function countryList() {
// var screenSize = $(window).width();
// var countryInputWidth = $('#country').width();
// var countryListWidth = countryInputWidth;
// $('.kyc-form .country-list').width(countryListWidth + 86);
// }
// countryList();
/*--------------------------------------------
File Input
--------------------------------------------*/
// var fileInput = document.querySelector( ".custom-file-input" );
// var the_return = document.querySelector(".file-return");
// $(fileInput).on('change', function(event) {
// $(the_return).html(this.value);
// })
})

View File

@@ -0,0 +1 @@
!function(){"use strict";function e(e){try{if("undefined"==typeof console)return;"error"in console?console.error(e):console.log(e)}catch(e){}}function t(e){return d.innerHTML='<a href="'+e.replace(/"/g,"&quot;")+'"></a>',d.childNodes[0].getAttribute("href")||""}function r(e,t){var r=e.substr(t,2);return parseInt(r,16)}function n(n,c){for(var o="",a=r(n,c),i=c+2;i<n.length;i+=2){var l=r(n,i)^a;o+=String.fromCharCode(l)}try{o=decodeURIComponent(escape(o))}catch(u){e(u)}return t(o)}function c(t){for(var r=t.querySelectorAll("a"),c=0;c<r.length;c++)try{var o=r[c],a=o.href.indexOf(l);a>-1&&(o.href="mailto:"+n(o.href,a+l.length))}catch(i){e(i)}}function o(t){for(var r=t.querySelectorAll(u),c=0;c<r.length;c++)try{var o=r[c],a=o.parentNode,i=o.getAttribute(f);if(i){var l=n(i,0),d=document.createTextNode(l);a.replaceChild(d,o)}}catch(h){e(h)}}function a(t){for(var r=t.querySelectorAll("template"),n=0;n<r.length;n++)try{i(r[n].content)}catch(c){e(c)}}function i(t){try{c(t),o(t),a(t)}catch(r){e(r)}}var l="/cdn-cgi/l/email-protection#",u=".__cf_email__",f="data-cfemail",d=document.createElement("div");i(document),function(){var e=document.currentScript||document.scripts[document.scripts.length-1];e.parentNode.removeChild(e)}()}();

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long