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 | : 162.158.155.44
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 /
noahpromax.com /
assets /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
ajaxchimp.min.js
2.33
KB
-rw-r--r--
appear.min.js
1.79
KB
-rw-r--r--
bootstrap.bundle.min.js
76.25
KB
-rw-r--r--
carousel-thumbs.js
3.38
KB
-rw-r--r--
contact-form-script.js
2.01
KB
-rw-r--r--
custom.js
10.26
KB
-rw-r--r--
form-validator.min.js
5.91
KB
-rw-r--r--
jquery.min.js
87.4
KB
-rw-r--r--
magnific-popup.min.js
19.74
KB
-rw-r--r--
meanmenu.min.js
3.94
KB
-rw-r--r--
odometer.min.js
10.02
KB
-rw-r--r--
owl.carousel.min.js
43.3
KB
-rw-r--r--
wow.min.js
7.96
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : contact-form-script.js
/*==============================================================*/ // Raque Contact Form JS /*==============================================================*/ (function ($) { "use strict"; // Start of use strict $("#contactForm").validator().on("submit", function (event) { if (event.isDefaultPrevented()) { // handle the invalid form... formError(); submitMSG(false, "Did you fill up the form properly?"); } else { // everything looks good! event.preventDefault(); submitForm(); } }); function submitForm(){ // Initiate Variables With Form Content var name = $("#name").val(); var email = $("#email").val(); var msg_subject = $("#msg_subject").val(); var phone_number = $("#phone_number").val(); var message = $("#message").val(); $.ajax({ type: "POST", url: "assets/php/form-process.php", data: "name=" + name + "&email=" + email + "&msg_subject=" + msg_subject + "&phone_number=" + phone_number + "&message=" + message, success : function(text){ if (text == "success"){ formSuccess(); } else { formError(); submitMSG(false,text); } } }); } function formSuccess(){ $("#contactForm")[0].reset(); submitMSG(true, "Message Submitted!") } function formError(){ $("#contactForm").removeClass().addClass('shake animated').one('webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend', function(){ $(this).removeClass(); }); } function submitMSG(valid, msg){ if(valid){ var msgClasses = "h4 tada animated text-success"; } else { var msgClasses = "h4 text-danger"; } $("#msgSubmit").removeClass().addClass(msgClasses).text(msg); } }(jQuery)); // End of use strict
Close