Server IP : 144.76.124.212 / Your IP : 216.73.216.36 Web Server : LiteSpeed System : Linux l4cp.vnetindia.com 4.18.0-553.40.1.lve.el8.x86_64 #1 SMP Wed Feb 12 18:54:57 UTC 2025 x86_64 User : rakcha ( 1356) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home5/rakcha/www/control/assets/js/pages/extra_pages/ |
Upload File : |
/** * Document : pages.js * Author : redstar * Description: pages script * **/ // Toggle Function $(document).on('click','.toggle',function(){ 'use strict'; // Switches the Icon and form if($(this).children('i').attr('class')=='fa fa-user-plus') { $(this).children('i').removeClass('fa-user-plus'); $(this).children('i').addClass('fa-times'); $('.formLogin').slideUp("slow"); $('.formRegister').slideDown("slow"); } else { $(this).children('i').removeClass('fa-times'); $(this).children('i').addClass('fa-user-plus'); $('.formLogin').slideDown("slow"); if($('.formRegister').is(':visible')) $('.formRegister').slideUp("slow"); else $('.formReset').slideUp("slow"); } }); $(document).on('click','.forgetPassword a',function(){ 'use strict'; // Switches the Icon and form $('.toggle').children('i').removeClass('fa-user-plus'); $('.toggle').children('i').addClass('fa-times'); $('.formLogin').slideUp("slow"); $('.formReset').slideDown("slow"); }); $(window).resize(function(){ $( "body" ).css( "min-height",$( window ).height() ); }); $(document).ready(function(){ $( "body" ).css( "min-height",$( window ).height() ); });