UnknownSec Bypass
403
:
/
var
/
www
/
santgyaneshwarji
/
cpanel
/ [
drwxr-xr-x
]
Menu
Upload
Mass depes
Mass delete
Terminal
Info server
About
name :
add_ashram_address.php
<?php include "top.php"; include "header.php"; include "menu.php"; ?> <script src="https://code.jquery.com/jquery-2.2.0.min.js"></script> <script type="text/javascript"> $(document).ready(function (e){ $("#uploadForm").on('submit',(function(e){ e.preventDefault(); var flag = true; var inputField1 =document.getElementById("name"); if (inputField1.value == "") { flag = false; alert("Please enter ashram name"); document.getElementById("name").focus(); return false; } var inputField2 =document.getElementById("address"); if (inputField2.value == "") { flag = false; alert("Please enter ashram address"); document.getElementById("address").focus(); return false; } var inputField3 =document.getElementById("mobile"); if (inputField3.value == "") { flag = false; alert("Please enter mobile no."); document.getElementById("mobile").focus(); return false; } var inputField4 =document.getElementById("email"); if (inputField4.value == "") { flag = false; alert("Please enter ashram email"); document.getElementById("email").focus(); return false; } var inputField5 =document.getElementById("fileToUpload"); if (inputField5.value == "") { flag = false; alert("Please select image"); document.getElementById("fileToUpload").focus(); return false; } var name = document.getElementById("name").value; var address = document.getElementById("address").value; var mobile = document.getElementById("mobile").value; var email = document.getElementById("email").value; try { if (flag == true) { $.ajax({ url: "save_ashram_address.php", type: "POST", data: new FormData(this), contentType: false, cache: false, processData:false, success: function(data){ window.location.href="list_ashram_address.php"; }, error: function(){} }); } } catch (Error) { alert(Error); } return; })); }); </script> <div class="form-w3layouts"> <!-- page start--> <!-- page start--> <div class="row"> <div class="row w3-res-tb"> <div class="col-sm-5 m-b-xs"> <a href="list_ashram_address.php"><button class="btn btn-sm btn-default"><b>Back to Ashram Address List</b></button></a> </div> <div class="col-sm-4"> </div> <div class="col-sm-3"> </div> </div> <div class="col-lg-12"> <section class="panel"> <header class="panel-heading"> Add Ashram Address </header> <div class="panel-body"> <div class="position-center"> <form enctype="multipart/form-data" id="uploadForm" action="save_ashram_address.php" method="post"> <div class="form-group"> <label for="exampleInputEmail1">Name</label> <input type="text" class="form-control" id="name" name="name" placeholder="Gallery Category Title"> </div> <div class="form-group"> <label for="exampleInputEmail1">address</label> <input type="text" class="form-control" id="address" name="address" placeholder="Gallery Category Title"> </div> <div class="form-group"> <label for="exampleInputEmail1">Phone No.</label> <input type="text" class="form-control" id="mobile" name="mobile" placeholder="Gallery Category Title"> </div> <div class="form-group"> <label for="exampleInputEmail1">Email Id</label> <input type="text" class="form-control" id="email" name="email" placeholder="Gallery Category Title"> </div> <div class="form-group"> <label for="exampleInputFile">Ashram Image</label> <input type="file" id="fileToUpload" name="fileToUpload"> <p class="help-block">Max. Size 200kb (only .jpg, .jpeg, .png files allow)</p> </div> <input type="submit" class="btn btn-info" onclick="data()" value="Submit"> </form> </div> </div> </section> </div> </div> </div> <?php include "footer.php"; ?>
Copyright © 2025 - UnknownSec