404
This commit is contained in:
parent
649064caeb
commit
777450559e
@ -16,7 +16,7 @@ class ApkController extends Controller {
|
|||||||
$apk = $this->apkService->getBySlug($params['slug']);
|
$apk = $this->apkService->getBySlug($params['slug']);
|
||||||
if (!$apk) {
|
if (!$apk) {
|
||||||
header("HTTP/1.0 404 Not Found");
|
header("HTTP/1.0 404 Not Found");
|
||||||
echo "APK Not Found";
|
$this->view("404");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -32,7 +32,7 @@ class ApkController extends Controller {
|
|||||||
|
|
||||||
if (!$apk) {
|
if (!$apk) {
|
||||||
header("HTTP/1.0 404 Not Found");
|
header("HTTP/1.0 404 Not Found");
|
||||||
echo "APK Not Found";
|
$this->view("404");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -33,7 +33,10 @@ class HomeController extends Controller {
|
|||||||
$apk = $stmt->fetch();
|
$apk = $stmt->fetch();
|
||||||
|
|
||||||
if (!$apk) {
|
if (!$apk) {
|
||||||
$this->redirect('/');
|
if (ob_get_level() > 0) ob_clean();
|
||||||
|
header("HTTP/1.0 404 Not Found");
|
||||||
|
$this->view('404');
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Store referral code if present specifically for this APK or take from global session
|
// Store referral code if present specifically for this APK or take from global session
|
||||||
@ -57,7 +60,10 @@ class HomeController extends Controller {
|
|||||||
$apk = $stmt->fetch();
|
$apk = $stmt->fetch();
|
||||||
|
|
||||||
if (!$apk) {
|
if (!$apk) {
|
||||||
$this->redirect('/');
|
if (ob_get_level() > 0) ob_clean();
|
||||||
|
header("HTTP/1.0 404 Not Found");
|
||||||
|
$this->view('404');
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Increment download count
|
// Increment download count
|
||||||
|
|||||||
@ -34,7 +34,7 @@ class Router {
|
|||||||
|
|
||||||
if (is_string($handler) && strpos($handler, '@') !== false) {
|
if (is_string($handler) && strpos($handler, '@') !== false) {
|
||||||
[$controllerName, $methodName] = explode('@', $handler);
|
[$controllerName, $methodName] = explode('@', $handler);
|
||||||
$controllerClass = "App\\Controllers\\".$controllerName;
|
$controllerClass = "App\\Controllers\\" . $controllerName;
|
||||||
$controller = new $controllerClass();
|
$controller = new $controllerClass();
|
||||||
return $controller->$methodName($params);
|
return $controller->$methodName($params);
|
||||||
}
|
}
|
||||||
@ -45,7 +45,11 @@ class Router {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Handle 404
|
||||||
|
if (ob_get_level() > 0) {
|
||||||
|
ob_clean();
|
||||||
|
}
|
||||||
header("HTTP/1.0 404 Not Found");
|
header("HTTP/1.0 404 Not Found");
|
||||||
echo "404 Not Found";
|
require __DIR__ . "/../../views/404.php";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
BIN
assets/pasted-20260225-013211-6b3583b9.jpg
Normal file
BIN
assets/pasted-20260225-013211-6b3583b9.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 65 KiB |
309
lang/en.php
309
lang/en.php
@ -1,163 +1,148 @@
|
|||||||
<?php
|
<?php
|
||||||
return [
|
return array (
|
||||||
'home' => 'Home',
|
'home' => 'Home',
|
||||||
'search' => 'Search',
|
'search' => 'Search',
|
||||||
'search_placeholder' => 'Search for apps and games...',
|
'search_placeholder' => 'Search for apps and games...',
|
||||||
'search_results_for' => 'Search results for',
|
'search_results_for' => 'Search results for',
|
||||||
'no_apks_found' => 'No APKs found',
|
'no_apks_found' => 'No APKs found',
|
||||||
'try_another_search' => 'Try another search term or browse categories.',
|
'try_another_search' => 'Try another search term or browse categories.',
|
||||||
'view_all_apks' => 'View All APKs',
|
'view_all_apks' => 'View All APKs',
|
||||||
'login' => 'Login',
|
'login' => 'Login',
|
||||||
'register' => 'Register',
|
'register' => 'Register',
|
||||||
'logout' => 'Logout',
|
'logout' => 'Logout',
|
||||||
'profile' => 'Profile',
|
'profile' => 'Profile',
|
||||||
'admin' => 'Admin',
|
'admin' => 'Admin',
|
||||||
'download' => 'Download',
|
'download' => 'Download',
|
||||||
'share' => 'Share',
|
'share' => 'Share',
|
||||||
'categories' => 'Categories',
|
'categories' => 'Categories',
|
||||||
'all_categories' => 'All Categories',
|
'all_categories' => 'All Categories',
|
||||||
'latest_apks' => 'Latest APKs',
|
'latest_apks' => 'Latest APKs',
|
||||||
'featured_apks' => 'Featured APKs',
|
'featured_apks' => 'Featured APKs',
|
||||||
'download_now' => 'Download Now',
|
'download_now' => 'Download Now',
|
||||||
'share_link' => 'Share Link',
|
'share_link' => 'Share Link',
|
||||||
'balance' => 'Balance',
|
'balance' => 'Balance',
|
||||||
'referral_link' => 'Referral Link',
|
'referral_link' => 'Referral Link',
|
||||||
'withdraw' => 'Withdraw',
|
'withdraw' => 'Withdraw',
|
||||||
'withdrawal_history' => 'Withdrawal History',
|
'withdrawal_history' => 'Withdrawal History',
|
||||||
'settings' => 'Settings',
|
'settings' => 'Settings',
|
||||||
'site_name' => 'Site Name',
|
'site_name' => 'Site Name',
|
||||||
'site_icon' => 'Site Icon',
|
'site_icon' => 'Site Icon',
|
||||||
'site_favicon' => 'Site Favicon',
|
'site_favicon' => 'Site Favicon',
|
||||||
'save_settings' => 'Save Settings',
|
'save_settings' => 'Save Settings',
|
||||||
'select_language' => 'Select Language',
|
'select_language' => 'Select Language',
|
||||||
'language_indonesia' => 'Indonesian',
|
'language_indonesia' => 'Indonesian',
|
||||||
'language_english' => 'English',
|
'language_english' => 'English',
|
||||||
'admin_dashboard' => 'Admin Dashboard',
|
'admin_dashboard' => 'Admin Dashboard',
|
||||||
'manage_apks' => 'Manage APKs',
|
'manage_apks' => 'Manage APKs',
|
||||||
'manage_categories' => 'Manage Categories',
|
'manage_categories' => 'Manage Categories',
|
||||||
'manage_withdrawals' => 'Manage Withdrawals',
|
'manage_withdrawals' => 'Manage Withdrawals',
|
||||||
'general_settings' => 'General Settings',
|
'general_settings' => 'General Settings',
|
||||||
|
'footer_about' => 'is your premier source for professional APK downloads, offering the latest and safest Android applications and games.',
|
||||||
// Footer
|
'popular' => 'Popular',
|
||||||
'footer_about' => 'is your premier source for professional APK downloads, offering the latest and safest Android applications and games.',
|
'top_games' => 'Top Games',
|
||||||
'popular' => 'Popular',
|
'top_apps' => 'Top Apps',
|
||||||
'top_games' => 'Top Games',
|
'new_releases' => 'New Releases',
|
||||||
'top_apps' => 'Top Apps',
|
'resources' => 'Resources',
|
||||||
'new_releases' => 'New Releases',
|
'support_center' => 'Support Center',
|
||||||
'resources' => 'Resources',
|
'terms_of_service' => 'Terms of Service',
|
||||||
'support_center' => 'Support Center',
|
'privacy_policy' => 'Privacy Policy',
|
||||||
'terms_of_service' => 'Terms of Service',
|
'subscribe' => 'Subscribe',
|
||||||
'privacy_policy' => 'Privacy Policy',
|
'subscribe_text' => 'Stay updated with the latest APK releases.',
|
||||||
'subscribe' => 'Subscribe',
|
'email_placeholder' => 'Your email address',
|
||||||
'subscribe_text' => 'Stay updated with the latest APK releases.',
|
'all_rights_reserved' => 'All rights reserved.',
|
||||||
'email_placeholder' => 'Your email address',
|
'hero_title' => 'Download the Best <span class="text-success">Android APKs</span> Professionally',
|
||||||
'all_rights_reserved' => 'All rights reserved.',
|
'hero_subtitle' => 'Fast, safe, and secure downloads for your favorite mobile apps and games. No registration required to browse.',
|
||||||
|
'explore_apps' => 'Explore Apps',
|
||||||
// Home
|
'join_referral' => 'Join Referral',
|
||||||
'hero_title' => 'Download the Best <span class="text-success">Android APKs</span> Professionally',
|
'details' => 'Details',
|
||||||
'hero_subtitle' => 'Fast, safe, and secure downloads for your favorite mobile apps and games. No registration required to browse.',
|
'referral_journey_title' => 'Start your referral journey today',
|
||||||
'explore_apps' => 'Explore Apps',
|
'referral_journey_text' => 'Earn <b>Rp 500</b> for every download via your link. Join our community and share your favorite APKs.',
|
||||||
'join_referral' => 'Join Referral',
|
'get_started' => 'Get Started',
|
||||||
'details' => 'Details',
|
'home_title_suffix' => ' - Professional APK Download Portal',
|
||||||
'referral_journey_title' => 'Start your referral journey today',
|
'official_version_text' => 'Official and original version. Verified safe for Android device.',
|
||||||
'referral_journey_text' => 'Earn <b>Rp 500</b> for every download via your link. Join our community and share your favorite APKs.',
|
'downloads' => 'Downloads',
|
||||||
'get_started' => 'Get Started',
|
'verified_safe' => 'Verified Safe',
|
||||||
'home_title_suffix' => ' - Professional APK Download Portal',
|
'agree_terms_text' => 'By clicking Download, you agree to our terms of service.',
|
||||||
|
'description' => 'Description',
|
||||||
// APK Detail
|
'main_features' => 'Main Features',
|
||||||
'official_version_text' => 'Official and original version. Verified safe for Android device.',
|
'feature_original' => 'Original APK from developer',
|
||||||
'downloads' => 'Downloads',
|
'feature_no_extra' => 'No extra files needed',
|
||||||
'verified_safe' => 'Verified Safe',
|
'feature_fast' => 'Fast and direct download',
|
||||||
'agree_terms_text' => 'By clicking Download, you agree to our terms of service.',
|
'feature_regular' => 'Regular updates included',
|
||||||
'description' => 'Description',
|
'system_requirements' => 'System Requirements',
|
||||||
'main_features' => 'Main Features',
|
'req_android' => 'Android 6.0+ (Marshmallow)',
|
||||||
'feature_original' => 'Original APK from developer',
|
'req_ram' => '2GB RAM minimum recommended',
|
||||||
'feature_no_extra' => 'No extra files needed',
|
'req_internet' => 'Stable internet connection',
|
||||||
'feature_fast' => 'Fast and direct download',
|
'req_cpu' => 'ARMv8 or newer processor',
|
||||||
'feature_regular' => 'Regular updates included',
|
'safe_question' => 'Is this safe to download?',
|
||||||
'system_requirements' => 'System Requirements',
|
'safe_answer' => 'Yes, every app on ApkNusa is scanned and verified to ensure it is original and safe from the official developers.',
|
||||||
'req_android' => 'Android 6.0+ (Marshmallow)',
|
'share_earn' => 'Share & Earn',
|
||||||
'req_ram' => '2GB RAM minimum recommended',
|
'share_earn_text' => 'Share this link and earn <b>Rp 500</b> for every download!',
|
||||||
'req_internet' => 'Stable internet connection',
|
'copy' => 'Copy',
|
||||||
'req_cpu' => 'ARMv8 or newer processor',
|
'login_to_earn' => 'Login to earn money',
|
||||||
'safe_question' => 'Is this safe to download?',
|
'referral_program' => 'Referral Program',
|
||||||
'safe_answer' => 'Yes, every app on ApkNusa is scanned and verified to ensure it is original and safe from the official developers.',
|
'referral_program_text' => 'Join our community, share APKs, and get paid directly to your e-wallet or bank account.',
|
||||||
'share_earn' => 'Share & Earn',
|
'copy_success_js' => 'Share link copied! Send this to your friends to earn money.',
|
||||||
'share_earn_text' => 'Share this link and earn <b>Rp 500</b> for every download!',
|
'apk_detail_title' => 'Download %s %s - %s',
|
||||||
'copy' => 'Copy',
|
'apk_detail_meta_desc' => 'Download %s %s APK for free. %s',
|
||||||
'login_to_earn' => 'Login to earn money',
|
'apk_detail_meta_keywords' => '%s, %s apk, download %s',
|
||||||
'referral_program' => 'Referral Program',
|
'login_title' => 'Login to ApkNusa',
|
||||||
'referral_program_text' => 'Join our community, share APKs, and get paid directly to your e-wallet or bank account.',
|
'username' => 'Username',
|
||||||
'copy_success_js' => 'Share link copied! Send this to your friends to earn money.',
|
'password' => 'Password',
|
||||||
'apk_detail_title' => 'Download %s %s - %s',
|
'dont_have_account' => 'Don\'t have an account?',
|
||||||
'apk_detail_meta_desc' => 'Download %s %s APK for free. %s',
|
'register_here' => 'Register here',
|
||||||
'apk_detail_meta_keywords' => '%s, %s apk, download %s',
|
'register_title' => 'Register for ApkNusa',
|
||||||
|
'confirm_password' => 'Confirm Password',
|
||||||
// Auth
|
'referral_code_optional' => 'Referral Code (Optional)',
|
||||||
'login_title' => 'Login to ApkNusa',
|
'create_account' => 'Create Account',
|
||||||
'username' => 'Username',
|
'already_have_account' => 'Already have an account?',
|
||||||
'password' => 'Password',
|
'login_here' => 'Login here',
|
||||||
'dont_have_account' => "Don't have an account?",
|
'error_invalid_login' => 'Invalid username or password',
|
||||||
'register_here' => 'Register here',
|
'error_password_mismatch' => 'Passwords do not match',
|
||||||
'register_title' => 'Register for ApkNusa',
|
'error_username_exists' => 'Username already exists',
|
||||||
'confirm_password' => 'Confirm Password',
|
'member_since' => 'Member since',
|
||||||
'referral_code_optional' => 'Referral Code (Optional)',
|
'points' => 'Points',
|
||||||
'create_account' => 'Create Account',
|
'referrals' => 'Referrals',
|
||||||
'already_have_account' => 'Already have an account?',
|
'min_withdraw' => 'Min. withdraw',
|
||||||
'login_here' => 'Login here',
|
'referral_share_text' => 'Share your referral link to earn <b>Rp 500</b> for every download.',
|
||||||
'error_invalid_login' => 'Invalid username or password',
|
'copy_link' => 'Copy Link',
|
||||||
'error_password_mismatch' => 'Passwords do not match',
|
'example_ref_link' => 'Example APK referral link:',
|
||||||
'error_username_exists' => 'Username already exists',
|
'recent_activities' => 'Recent activities',
|
||||||
|
'date' => 'Date',
|
||||||
// Profile
|
'amount' => 'Amount',
|
||||||
'member_since' => 'Member since',
|
'method' => 'Method',
|
||||||
'points' => 'Points',
|
'status' => 'Status',
|
||||||
'referrals' => 'Referrals',
|
'no_history' => 'No withdrawal history yet.',
|
||||||
'min_withdraw' => 'Min. withdraw',
|
'request_withdrawal' => 'Request Withdrawal',
|
||||||
'referral_share_text' => 'Share your referral link to earn <b>Rp 500</b> for every download.',
|
'amount_to_withdraw' => 'Amount to Withdraw (IDR)',
|
||||||
'copy_link' => 'Copy Link',
|
'payment_method' => 'Payment Method',
|
||||||
'example_ref_link' => 'Example APK referral link:',
|
'select_method' => 'Select method...',
|
||||||
'recent_activities' => 'Recent activities',
|
'account_details' => 'Account Details',
|
||||||
'date' => 'Date',
|
'account_details_placeholder' => 'Enter phone number or bank account number with name',
|
||||||
'amount' => 'Amount',
|
'cancel' => 'Cancel',
|
||||||
'method' => 'Method',
|
'submit_request' => 'Submit Request',
|
||||||
'status' => 'Status',
|
'ref_copy_success_js' => 'Referral link copied to clipboard!',
|
||||||
'no_history' => 'No withdrawal history yet.',
|
'error_min_withdraw' => 'Minimum withdrawal is Rp 10.000',
|
||||||
'request_withdrawal' => 'Request Withdrawal',
|
'error_insufficient_balance' => 'Insufficient balance',
|
||||||
'amount_to_withdraw' => 'Amount to Withdraw (IDR)',
|
'success_withdraw_submitted' => 'Withdrawal request submitted successfully',
|
||||||
'payment_method' => 'Payment Method',
|
'meta_description_default' => 'Download Professional APKs.',
|
||||||
'select_method' => 'Select method...',
|
'meta_keywords_default' => 'apk, android, download',
|
||||||
'account_details' => 'Account Details',
|
'help_center_title' => 'Help Center',
|
||||||
'account_details_placeholder' => 'Enter phone number or bank account number with name',
|
'faq_title' => 'Frequently Asked Questions',
|
||||||
'cancel' => 'Cancel',
|
'faq_q1' => 'How to download APK from our site?',
|
||||||
'submit_request' => 'Submit Request',
|
'faq_a1' => 'Simply browse for the app you want, click on it, and then click the green "Download Now" button. Your download will start immediately.',
|
||||||
'ref_copy_success_js' => 'Referral link copied to clipboard!',
|
'faq_q2' => 'Are the APKs safe?',
|
||||||
'error_min_withdraw' => 'Minimum withdrawal is Rp 10.000',
|
'faq_a2' => 'Yes, all our APKs are sourced from original developers and verified to be safe and clean from any malware.',
|
||||||
'error_insufficient_balance' => 'Insufficient balance',
|
'faq_q3' => 'How does the referral program work?',
|
||||||
'success_withdraw_submitted' => 'Withdrawal request submitted successfully',
|
'faq_a3' => 'Register for an account, copy your referral link from an APK page or your profile, and share it. You will earn Rp 500 for every unique download made through your link.',
|
||||||
|
'contact_us' => 'Contact Us',
|
||||||
// SEO Defaults
|
'contact_text' => 'Still have questions? Our support team is here to help you.',
|
||||||
'meta_description_default' => 'Download Professional APKs.',
|
'send_email' => 'Send Email',
|
||||||
'meta_keywords_default' => 'apk, android, download',
|
'privacy_policy_title' => 'Privacy Policy',
|
||||||
|
'privacy_policy_content' => '<h3>1. Information We Collect</h3><p>We collect information that you provide directly to us, such as when you create an account, participate in our referral program, or communicate with us.</p><h3>2. How We Use Information</h3><p>We use the information we collect to provide, maintain, and improve our services, including processing your referral earnings and withdrawal requests.</p><h3>3. Data Security</h3><p>We take reasonable measures to help protect information about you from loss, theft, misuse and unauthorized access.</p>',
|
||||||
// Help Center
|
'terms_of_service_title' => 'Terms of Service',
|
||||||
'help_center_title' => 'Help Center',
|
'terms_of_service_content' => '<h3>1. Acceptance of Terms</h3><p>By accessing or using our website, you agree to be bound by these terms of service.</p><h3>2. User Conduct</h3><p>You agree not to use the website for any unlawful purpose or in any way that could damage, disable, or impair the website.</p><h3>3. Referral Program</h3><p>Abuse of the referral program, including but not limited to self-referrals or using bots, will result in account suspension and forfeiture of earnings.</p>',
|
||||||
'faq_title' => 'Frequently Asked Questions',
|
'404_title' => 'Page Not Found',
|
||||||
'faq_q1' => 'How to download APK from our site?',
|
'404_text' => 'The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.',
|
||||||
'faq_a1' => 'Simply browse for the app you want, click on it, and then click the green "Download Now" button. Your download will start immediately.',
|
'back_to_home' => 'Back to Home',
|
||||||
'faq_q2' => 'Are the APKs safe?',
|
);
|
||||||
'faq_a2' => 'Yes, all our APKs are sourced from original developers and verified to be safe and clean from any malware.',
|
|
||||||
'faq_q3' => 'How does the referral program work?',
|
|
||||||
'faq_a3' => 'Register for an account, copy your referral link from an APK page or your profile, and share it. You will earn Rp 500 for every unique download made through your link.',
|
|
||||||
'contact_us' => 'Contact Us',
|
|
||||||
'contact_text' => 'Still have questions? Our support team is here to help you.',
|
|
||||||
'send_email' => 'Send Email',
|
|
||||||
|
|
||||||
// Privacy Policy
|
|
||||||
'privacy_policy_title' => 'Privacy Policy',
|
|
||||||
'privacy_policy_content' => '<h3>1. Information We Collect</h3><p>We collect information that you provide directly to us, such as when you create an account, participate in our referral program, or communicate with us.</p><h3>2. How We Use Information</h3><p>We use the information we collect to provide, maintain, and improve our services, including processing your referral earnings and withdrawal requests.</p><h3>3. Data Security</h3><p>We take reasonable measures to help protect information about you from loss, theft, misuse and unauthorized access.</p>',
|
|
||||||
|
|
||||||
// Terms of Service
|
|
||||||
'terms_of_service_title' => 'Terms of Service',
|
|
||||||
'terms_of_service_content' => '<h3>1. Acceptance of Terms</h3><p>By accessing or using our website, you agree to be bound by these terms of service.</p><h3>2. User Conduct</h3><p>You agree not to use the website for any unlawful purpose or in any way that could damage, disable, or impair the website.</p><h3>3. Referral Program</h3><p>Abuse of the referral program, including but not limited to self-referrals or using bots, will result in account suspension and forfeiture of earnings.</p>',
|
|
||||||
];
|
|
||||||
|
|||||||
309
lang/id.php
309
lang/id.php
@ -1,163 +1,148 @@
|
|||||||
<?php
|
<?php
|
||||||
return [
|
return array (
|
||||||
'home' => 'Beranda',
|
'home' => 'Beranda',
|
||||||
'search' => 'Cari',
|
'search' => 'Cari',
|
||||||
'search_placeholder' => 'Cari aplikasi dan game...',
|
'search_placeholder' => 'Cari aplikasi dan game...',
|
||||||
'search_results_for' => 'Hasil pencarian untuk',
|
'search_results_for' => 'Hasil pencarian untuk',
|
||||||
'no_apks_found' => 'APK tidak ditemukan',
|
'no_apks_found' => 'APK tidak ditemukan',
|
||||||
'try_another_search' => 'Coba kata kunci lain atau telusuri kategori.',
|
'try_another_search' => 'Coba kata kunci lain atau telusuri kategori.',
|
||||||
'view_all_apks' => 'Lihat Semua APK',
|
'view_all_apks' => 'Lihat Semua APK',
|
||||||
'login' => 'Masuk',
|
'login' => 'Masuk',
|
||||||
'register' => 'Daftar',
|
'register' => 'Daftar',
|
||||||
'logout' => 'Keluar',
|
'logout' => 'Keluar',
|
||||||
'profile' => 'Profil',
|
'profile' => 'Profil',
|
||||||
'admin' => 'Admin',
|
'admin' => 'Admin',
|
||||||
'download' => 'Unduh',
|
'download' => 'Unduh',
|
||||||
'share' => 'Bagikan',
|
'share' => 'Bagikan',
|
||||||
'categories' => 'Kategori',
|
'categories' => 'Kategori',
|
||||||
'all_categories' => 'Semua Kategori',
|
'all_categories' => 'Semua Kategori',
|
||||||
'latest_apks' => 'APK Terbaru',
|
'latest_apks' => 'APK Terbaru',
|
||||||
'featured_apks' => 'APK Unggulan',
|
'featured_apks' => 'APK Unggulan',
|
||||||
'download_now' => 'Unduh Sekarang',
|
'download_now' => 'Unduh Sekarang',
|
||||||
'share_link' => 'Bagikan Link',
|
'share_link' => 'Bagikan Link',
|
||||||
'balance' => 'Saldo',
|
'balance' => 'Saldo',
|
||||||
'referral_link' => 'Link Referral',
|
'referral_link' => 'Link Referral',
|
||||||
'withdraw' => 'Tarik Saldo',
|
'withdraw' => 'Tarik Saldo',
|
||||||
'withdrawal_history' => 'Riwayat Penarikan',
|
'withdrawal_history' => 'Riwayat Penarikan',
|
||||||
'settings' => 'Pengaturan',
|
'settings' => 'Pengaturan',
|
||||||
'site_name' => 'Nama Website',
|
'site_name' => 'Nama Website',
|
||||||
'site_icon' => 'Ikon Website',
|
'site_icon' => 'Ikon Website',
|
||||||
'site_favicon' => 'Favicon Website',
|
'site_favicon' => 'Favicon Website',
|
||||||
'save_settings' => 'Simpan Pengaturan',
|
'save_settings' => 'Simpan Pengaturan',
|
||||||
'select_language' => 'Pilih Bahasa',
|
'select_language' => 'Pilih Bahasa',
|
||||||
'language_indonesia' => 'Indonesia',
|
'language_indonesia' => 'Indonesia',
|
||||||
'language_english' => 'English',
|
'language_english' => 'English',
|
||||||
'admin_dashboard' => 'Dashboard Admin',
|
'admin_dashboard' => 'Dashboard Admin',
|
||||||
'manage_apks' => 'Kelola APK',
|
'manage_apks' => 'Kelola APK',
|
||||||
'manage_categories' => 'Kelola Kategori',
|
'manage_categories' => 'Kelola Kategori',
|
||||||
'manage_withdrawals' => 'Kelola Penarikan',
|
'manage_withdrawals' => 'Kelola Penarikan',
|
||||||
'general_settings' => 'Pengaturan Umum',
|
'general_settings' => 'Pengaturan Umum',
|
||||||
|
'footer_about' => 'adalah sumber utama Anda untuk unduhan APK profesional, menawarkan aplikasi dan game Android terbaru dan teraman.',
|
||||||
// Footer
|
'popular' => 'Populer',
|
||||||
'footer_about' => 'adalah sumber utama Anda untuk unduhan APK profesional, menawarkan aplikasi dan game Android terbaru dan teraman.',
|
'top_games' => 'Game Teratas',
|
||||||
'popular' => 'Populer',
|
'top_apps' => 'Aplikasi Teratas',
|
||||||
'top_games' => 'Game Teratas',
|
'new_releases' => 'Rilis Baru',
|
||||||
'top_apps' => 'Aplikasi Teratas',
|
'resources' => 'Sumber Daya',
|
||||||
'new_releases' => 'Rilis Baru',
|
'support_center' => 'Pusat Bantuan',
|
||||||
'resources' => 'Sumber Daya',
|
'terms_of_service' => 'Ketentuan Layanan',
|
||||||
'support_center' => 'Pusat Bantuan',
|
'privacy_policy' => 'Kebijakan Privasi',
|
||||||
'terms_of_service' => 'Ketentuan Layanan',
|
'subscribe' => 'Berlangganan',
|
||||||
'privacy_policy' => 'Kebijakan Privasi',
|
'subscribe_text' => 'Tetap update dengan rilis APK terbaru.',
|
||||||
'subscribe' => 'Berlangganan',
|
'email_placeholder' => 'Alamat email Anda',
|
||||||
'subscribe_text' => 'Tetap update dengan rilis APK terbaru.',
|
'all_rights_reserved' => 'Hak cipta dilindungi undang-undang.',
|
||||||
'email_placeholder' => 'Alamat email Anda',
|
'hero_title' => 'Unduh <span class="text-success">APK Android</span> Terbaik Secara Profesional',
|
||||||
'all_rights_reserved' => 'Hak cipta dilindungi undang-undang.',
|
'hero_subtitle' => 'Unduhan cepat, aman, dan terpercaya untuk aplikasi dan game seluler favorit Anda. Tanpa perlu registrasi untuk menjelajah.',
|
||||||
|
'explore_apps' => 'Jelajahi Aplikasi',
|
||||||
// Home
|
'join_referral' => 'Gabung Referral',
|
||||||
'hero_title' => 'Unduh <span class="text-success">APK Android</span> Terbaik Secara Profesional',
|
'details' => 'Detail',
|
||||||
'hero_subtitle' => 'Unduhan cepat, aman, dan terpercaya untuk aplikasi dan game seluler favorit Anda. Tanpa perlu registrasi untuk menjelajah.',
|
'referral_journey_title' => 'Mulai perjalanan referral Anda hari ini',
|
||||||
'explore_apps' => 'Jelajahi Aplikasi',
|
'referral_journey_text' => 'Dapatkan <b>Rp 500</b> untuk setiap unduhan melalui link Anda. Bergabunglah dengan komunitas kami dan bagikan APK favorit Anda.',
|
||||||
'join_referral' => 'Gabung Referral',
|
'get_started' => 'Mulai Sekarang',
|
||||||
'details' => 'Detail',
|
'home_title_suffix' => ' - Portal Unduh APK Profesional',
|
||||||
'referral_journey_title' => 'Mulai perjalanan referral Anda hari ini',
|
'official_version_text' => 'Versi resmi dan asli. Diverifikasi aman untuk perangkat Android.',
|
||||||
'referral_journey_text' => 'Dapatkan <b>Rp 500</b> untuk setiap unduhan melalui link Anda. Bergabunglah dengan komunitas kami dan bagikan APK favorit Anda.',
|
'downloads' => 'Unduhan',
|
||||||
'get_started' => 'Mulai Sekarang',
|
'verified_safe' => 'Terverifikasi Aman',
|
||||||
'home_title_suffix' => ' - Portal Unduh APK Profesional',
|
'agree_terms_text' => 'Dengan mengklik Unduh, Anda menyetujui ketentuan layanan kami.',
|
||||||
|
'description' => 'Deskripsi',
|
||||||
// APK Detail
|
'main_features' => 'Fitur Utama',
|
||||||
'official_version_text' => 'Versi resmi dan asli. Diverifikasi aman untuk perangkat Android.',
|
'feature_original' => 'APK asli dari pengembang',
|
||||||
'downloads' => 'Unduhan',
|
'feature_no_extra' => 'Tidak perlu file tambahan',
|
||||||
'verified_safe' => 'Terverifikasi Aman',
|
'feature_fast' => 'Unduhan cepat dan langsung',
|
||||||
'agree_terms_text' => 'Dengan mengklik Unduh, Anda menyetujui ketentuan layanan kami.',
|
'feature_regular' => 'Termasuk pembaruan rutin',
|
||||||
'description' => 'Deskripsi',
|
'system_requirements' => 'Persyaratan Sistem',
|
||||||
'main_features' => 'Fitur Utama',
|
'req_android' => 'Android 6.0+ (Marshmallow)',
|
||||||
'feature_original' => 'APK asli dari pengembang',
|
'req_ram' => 'Minimal RAM 2GB direkomendasikan',
|
||||||
'feature_no_extra' => 'Tidak perlu file tambahan',
|
'req_internet' => 'Koneksi internet stabil',
|
||||||
'feature_fast' => 'Unduhan cepat dan langsung',
|
'req_cpu' => 'Prosesor ARMv8 atau yang lebih baru',
|
||||||
'feature_regular' => 'Termasuk pembaruan rutin',
|
'safe_question' => 'Apakah ini aman untuk diunduh?',
|
||||||
'system_requirements' => 'Persyaratan Sistem',
|
'safe_answer' => 'Ya, setiap aplikasi di ApkNusa dipindai dan diverifikasi untuk memastikan keaslian dan keamanannya dari pengembang resmi.',
|
||||||
'req_android' => 'Android 6.0+ (Marshmallow)',
|
'share_earn' => 'Bagikan & Hasilkan',
|
||||||
'req_ram' => 'Minimal RAM 2GB direkomendasikan',
|
'share_earn_text' => 'Bagikan link ini dan dapatkan <b>Rp 500</b> untuk setiap unduhan!',
|
||||||
'req_internet' => 'Koneksi internet stabil',
|
'copy' => 'Salin',
|
||||||
'req_cpu' => 'Prosesor ARMv8 atau yang lebih baru',
|
'login_to_earn' => 'Masuk untuk menghasilkan uang',
|
||||||
'safe_question' => 'Apakah ini aman untuk diunduh?',
|
'referral_program' => 'Program Referral',
|
||||||
'safe_answer' => 'Ya, setiap aplikasi di ApkNusa dipindai dan diverifikasi untuk memastikan keaslian dan keamanannya dari pengembang resmi.',
|
'referral_program_text' => 'Bergabunglah dengan komunitas kami, bagikan APK, dan dapatkan bayaran langsung ke e-wallet atau rekening bank Anda.',
|
||||||
'share_earn' => 'Bagikan & Hasilkan',
|
'copy_success_js' => 'Link bagikan berhasil disalin! Kirimkan ini ke teman Anda untuk menghasilkan uang.',
|
||||||
'share_earn_text' => 'Bagikan link ini dan dapatkan <b>Rp 500</b> untuk setiap unduhan!',
|
'apk_detail_title' => 'Unduh %s %s - %s',
|
||||||
'copy' => 'Salin',
|
'apk_detail_meta_desc' => 'Unduh APK %s %s secara gratis. %s',
|
||||||
'login_to_earn' => 'Masuk untuk menghasilkan uang',
|
'apk_detail_meta_keywords' => '%s, %s apk, unduh %s',
|
||||||
'referral_program' => 'Program Referral',
|
'login_title' => 'Masuk ke ApkNusa',
|
||||||
'referral_program_text' => 'Bergabunglah dengan komunitas kami, bagikan APK, dan dapatkan bayaran langsung ke e-wallet atau rekening bank Anda.',
|
'username' => 'Username',
|
||||||
'copy_success_js' => 'Link bagikan berhasil disalin! Kirimkan ini ke teman Anda untuk menghasilkan uang.',
|
'password' => 'Kata Sandi',
|
||||||
'apk_detail_title' => 'Unduh %s %s - %s',
|
'dont_have_account' => 'Belum punya akun?',
|
||||||
'apk_detail_meta_desc' => 'Unduh APK %s %s secara gratis. %s',
|
'register_here' => 'Daftar di sini',
|
||||||
'apk_detail_meta_keywords' => '%s, %s apk, unduh %s',
|
'register_title' => 'Daftar di ApkNusa',
|
||||||
|
'confirm_password' => 'Konfirmasi Kata Sandi',
|
||||||
// Auth
|
'referral_code_optional' => 'Kode Referral (Opsional)',
|
||||||
'login_title' => 'Masuk ke ApkNusa',
|
'create_account' => 'Buat Akun',
|
||||||
'username' => 'Username',
|
'already_have_account' => 'Sudah punya akun?',
|
||||||
'password' => 'Kata Sandi',
|
'login_here' => 'Masuk di sini',
|
||||||
'dont_have_account' => "Belum punya akun?",
|
'error_invalid_login' => 'Username atau kata sandi salah',
|
||||||
'register_here' => 'Daftar di sini',
|
'error_password_mismatch' => 'Kata sandi tidak cocok',
|
||||||
'register_title' => 'Daftar di ApkNusa',
|
'error_username_exists' => 'Username sudah terdaftar',
|
||||||
'confirm_password' => 'Konfirmasi Kata Sandi',
|
'member_since' => 'Anggota sejak',
|
||||||
'referral_code_optional' => 'Kode Referral (Opsional)',
|
'points' => 'Poin',
|
||||||
'create_account' => 'Buat Akun',
|
'referrals' => 'Referral',
|
||||||
'already_have_account' => 'Sudah punya akun?',
|
'min_withdraw' => 'Min. penarikan',
|
||||||
'login_here' => 'Masuk di sini',
|
'referral_share_text' => 'Bagikan link referral Anda untuk mendapatkan <b>Rp 500</b> untuk setiap unduhan.',
|
||||||
'error_invalid_login' => 'Username atau kata sandi salah',
|
'copy_link' => 'Salin Link',
|
||||||
'error_password_mismatch' => 'Kata sandi tidak cocok',
|
'example_ref_link' => 'Contoh link referral APK:',
|
||||||
'error_username_exists' => 'Username sudah terdaftar',
|
'recent_activities' => 'Aktivitas terbaru',
|
||||||
|
'date' => 'Tanggal',
|
||||||
// Profile
|
'amount' => 'Jumlah',
|
||||||
'member_since' => 'Anggota sejak',
|
'method' => 'Metode',
|
||||||
'points' => 'Poin',
|
'status' => 'Status',
|
||||||
'referrals' => 'Referral',
|
'no_history' => 'Belum ada riwayat penarikan.',
|
||||||
'min_withdraw' => 'Min. penarikan',
|
'request_withdrawal' => 'Ajukan Penarikan',
|
||||||
'referral_share_text' => 'Bagikan link referral Anda untuk mendapatkan <b>Rp 500</b> untuk setiap unduhan.',
|
'amount_to_withdraw' => 'Jumlah yang Ditarik (IDR)',
|
||||||
'copy_link' => 'Salin Link',
|
'payment_method' => 'Metode Pembayaran',
|
||||||
'example_ref_link' => 'Contoh link referral APK:',
|
'select_method' => 'Pilih metode...',
|
||||||
'recent_activities' => 'Aktivitas terbaru',
|
'account_details' => 'Detail Akun',
|
||||||
'date' => 'Tanggal',
|
'account_details_placeholder' => 'Masukkan nomor telepon atau nomor rekening bank dengan nama',
|
||||||
'amount' => 'Jumlah',
|
'cancel' => 'Batal',
|
||||||
'method' => 'Metode',
|
'submit_request' => 'Ajukan Permintaan',
|
||||||
'status' => 'Status',
|
'ref_copy_success_js' => 'Link referral berhasil disalin!',
|
||||||
'no_history' => 'Belum ada riwayat penarikan.',
|
'error_min_withdraw' => 'Penarikan minimum adalah Rp 10.000',
|
||||||
'request_withdrawal' => 'Ajukan Penarikan',
|
'error_insufficient_balance' => 'Saldo tidak mencukupi',
|
||||||
'amount_to_withdraw' => 'Jumlah yang Ditarik (IDR)',
|
'success_withdraw_submitted' => 'Permintaan penarikan berhasil diajukan',
|
||||||
'payment_method' => 'Metode Pembayaran',
|
'meta_description_default' => 'Unduh APK Profesional.',
|
||||||
'select_method' => 'Pilih metode...',
|
'meta_keywords_default' => 'apk, android, unduh',
|
||||||
'account_details' => 'Detail Akun',
|
'help_center_title' => 'Pusat Bantuan',
|
||||||
'account_details_placeholder' => 'Masukkan nomor telepon atau nomor rekening bank dengan nama',
|
'faq_title' => 'Pertanyaan yang Sering Diajukan',
|
||||||
'cancel' => 'Batal',
|
'faq_q1' => 'Bagaimana cara mengunduh APK dari situs kami?',
|
||||||
'submit_request' => 'Ajukan Permintaan',
|
'faq_a1' => 'Cukup cari aplikasi yang Anda inginkan, klik aplikasi tersebut, lalu klik tombol hijau "Unduh Sekarang". Unduhan Anda akan segera dimulai.',
|
||||||
'ref_copy_success_js' => 'Link referral berhasil disalin!',
|
'faq_q2' => 'Apakah APK di sini aman?',
|
||||||
'error_min_withdraw' => 'Penarikan minimum adalah Rp 10.000',
|
'faq_a2' => 'Ya, semua APK kami bersumber dari pengembang asli dan diverifikasi aman serta bersih dari malware.',
|
||||||
'error_insufficient_balance' => 'Saldo tidak mencukupi',
|
'faq_q3' => 'Bagaimana cara kerja program referral?',
|
||||||
'success_withdraw_submitted' => 'Permintaan penarikan berhasil diajukan',
|
'faq_a3' => 'Daftar akun, salin link referral Anda dari halaman APK atau profil Anda, dan bagikan. Anda akan mendapatkan Rp 500 untuk setiap unduhan unik yang dilakukan melalui link Anda.',
|
||||||
|
'contact_us' => 'Hubungi Kami',
|
||||||
// SEO Defaults
|
'contact_text' => 'Masih punya pertanyaan? Tim dukungan kami siap membantu Anda.',
|
||||||
'meta_description_default' => 'Unduh APK Profesional.',
|
'send_email' => 'Kirim Email',
|
||||||
'meta_keywords_default' => 'apk, android, unduh',
|
'privacy_policy_title' => 'Kebijakan Privasi',
|
||||||
|
'privacy_policy_content' => '<h3>1. Informasi yang Kami Kumpulkan</h3><p>Kami mengumpulkan informasi yang Anda berikan langsung kepada kami, seperti saat Anda membuat akun, berpartisipasi dalam program referral kami, atau berkomunikasi dengan kami.</p><h3>2. Bagaimana Kami Menggunakan Informasi</h3><p>Kami menggunakan informasi yang kami kumpulkan untuk menyediakan, memelihara, dan meningkatkan layanan kami, termasuk memproses pendapatan referral dan permintaan penarikan Anda.</p><h3>3. Data Security</h3><p>Kami mengambil langkah-langkah yang wajar untuk membantu melindungi informasi tentang Anda dari kehilangan, pencurian, penyalahgunaan, dan akses yang tidak sah.</p>',
|
||||||
// Help Center
|
'terms_of_service_title' => 'Ketentuan Layanan',
|
||||||
'help_center_title' => 'Pusat Bantuan',
|
'terms_of_service_content' => '<h3>1. Penerimaan Ketentuan</h3><p>Dengan mengakses atau menggunakan situs web kami, Anda setuju untuk terikat oleh ketentuan layanan ini.</p><h3>2. Perilaku Pengguna</h3><p>Anda setuju untuk tidak menggunakan situs web untuk tujuan yang melanggar hukum atau dengan cara apa pun yang dapat merusak, melumpuhkan, atau mengganggu situs web.</p><h3>3. Program Referral</h3><p>Penyalahgunaan program referral, termasuk namun tidak terbatas pada referral diri sendiri atau menggunakan bot, akan mengakibatkan penangguhan akun dan penghapusan pendapatan.</p>',
|
||||||
'faq_title' => 'Pertanyaan yang Sering Diajukan',
|
'404_title' => 'Halaman Tidak Ditemukan',
|
||||||
'faq_q1' => 'Bagaimana cara mengunduh APK dari situs kami?',
|
'404_text' => 'Halaman yang Anda cari mungkin telah dihapus, namanya diubah, atau sementara tidak tersedia.',
|
||||||
'faq_a1' => 'Cukup cari aplikasi yang Anda inginkan, klik aplikasi tersebut, lalu klik tombol hijau "Unduh Sekarang". Unduhan Anda akan segera dimulai.',
|
'back_to_home' => 'Kembali ke Beranda',
|
||||||
'faq_q2' => 'Apakah APK di sini aman?',
|
);
|
||||||
'faq_a2' => 'Ya, semua APK kami bersumber dari pengembang asli dan diverifikasi aman serta bersih dari malware.',
|
|
||||||
'faq_q3' => 'Bagaimana cara kerja program referral?',
|
|
||||||
'faq_a3' => 'Daftar akun, salin link referral Anda dari halaman APK atau profil Anda, dan bagikan. Anda akan mendapatkan Rp 500 untuk setiap unduhan unik yang dilakukan melalui link Anda.',
|
|
||||||
'contact_us' => 'Hubungi Kami',
|
|
||||||
'contact_text' => 'Masih punya pertanyaan? Tim dukungan kami siap membantu Anda.',
|
|
||||||
'send_email' => 'Kirim Email',
|
|
||||||
|
|
||||||
// Privacy Policy
|
|
||||||
'privacy_policy_title' => 'Kebijakan Privasi',
|
|
||||||
'privacy_policy_content' => '<h3>1. Informasi yang Kami Kumpulkan</h3><p>Kami mengumpulkan informasi yang Anda berikan langsung kepada kami, seperti saat Anda membuat akun, berpartisipasi dalam program referral kami, atau berkomunikasi dengan kami.</p><h3>2. Bagaimana Kami Menggunakan Informasi</h3><p>Kami menggunakan informasi yang kami kumpulkan untuk menyediakan, memelihara, dan meningkatkan layanan kami, termasuk memproses pendapatan referral dan permintaan penarikan Anda.</p><h3>3. Data Security</h3><p>Kami mengambil langkah-langkah yang wajar untuk membantu melindungi informasi tentang Anda dari kehilangan, pencurian, penyalahgunaan, dan akses yang tidak sah.</p>',
|
|
||||||
|
|
||||||
// Terms of Service
|
|
||||||
'terms_of_service_title' => 'Ketentuan Layanan',
|
|
||||||
'terms_of_service_content' => '<h3>1. Penerimaan Ketentuan</h3><p>Dengan mengakses atau menggunakan situs web kami, Anda setuju untuk terikat oleh ketentuan layanan ini.</p><h3>2. Perilaku Pengguna</h3><p>Anda setuju untuk tidak menggunakan situs web untuk tujuan yang melanggar hukum atau dengan cara apa pun yang dapat merusak, melumpuhkan, atau mengganggu situs web.</p><h3>3. Program Referral</h3><p>Penyalahgunaan program referral, termasuk namun tidak terbatas pada referral diri sendiri atau menggunakan bot, akan mengakibatkan penangguhan akun dan penghapusan pendapatan.</p>',
|
|
||||||
];
|
|
||||||
|
|||||||
76
views/404.php
Normal file
76
views/404.php
Normal file
@ -0,0 +1,76 @@
|
|||||||
|
<?php include 'header.php'; ?>
|
||||||
|
|
||||||
|
<div class="container overflow-hidden">
|
||||||
|
<div class="row min-vh-100 align-items-center justify-content-center">
|
||||||
|
<div class="col-md-10 col-lg-8 text-center position-relative">
|
||||||
|
<!-- Large Decorative background 404 -->
|
||||||
|
<div class="position-absolute top-50 start-50 translate-middle z-0 opacity-5 d-none d-md-block" style="font-size: 20rem; font-weight: 900; letter-spacing: -0.5rem; pointer-events: none; user-select: none;">
|
||||||
|
404
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="position-relative z-1 py-5">
|
||||||
|
<div class="mb-5 floating-animation">
|
||||||
|
<!-- Custom SVG Illustration instead of icons for better reliability -->
|
||||||
|
<svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg" class="mx-auto shadow-sm p-4 rounded-circle bg-white border border-light">
|
||||||
|
<path d="M100 0C44.7715 0 0 44.7715 0 100C0 155.228 44.7715 200 100 200C155.228 200 200 155.228 200 100C200 44.7715 155.228 0 100 0ZM100 185C53.0558 185 15 146.944 15 100C15 53.0558 53.0558 15 100 15C146.944 15 185 53.0558 185 100C185 146.944 146.944 185 100 185Z" fill="#00C853" fill-opacity="0.1"/>
|
||||||
|
<circle cx="100" cy="100" r="70" fill="#00C853" fill-opacity="0.05"/>
|
||||||
|
<path d="M100 60V110" stroke="#00C853" stroke-width="12" stroke-linecap="round"/>
|
||||||
|
<circle cx="100" cy="135" r="8" fill="#00C853"/>
|
||||||
|
<path d="M60 85L50 95M140 85L150 95" stroke="#00C853" stroke-width="8" stroke-linecap="round"/>
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h1 class="display-3 fw-bold mb-3 text-dark"><?php echo __('404_title'); ?></h1>
|
||||||
|
<p class="text-muted fs-5 mb-5 max-width-600 mx-auto px-3">
|
||||||
|
<?php echo __('404_text'); ?>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<div class="d-flex flex-column flex-sm-row gap-3 justify-content-center align-items-center mb-5 px-3">
|
||||||
|
<a href="/" class="btn btn-success btn-lg rounded-pill px-5 py-3 shadow-sm hover-lift d-flex align-items-center w-100 w-sm-auto">
|
||||||
|
<i class="bi bi-house-door-fill me-2"></i>
|
||||||
|
<span class="fw-bold"><?php echo __('back_to_home'); ?></span>
|
||||||
|
</a>
|
||||||
|
<button onclick="window.history.back()" class="btn btn-outline-dark btn-lg rounded-pill px-5 py-3 hover-lift d-flex align-items-center w-100 w-sm-auto">
|
||||||
|
<i class="bi bi-arrow-left me-2"></i>
|
||||||
|
<span class="fw-bold"><?php echo __('Kembali', 'Kembali'); ?></span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="mt-5 p-4 bg-white rounded-5 shadow-sm border border-light-subtle max-width-500 mx-auto mx-3">
|
||||||
|
<p class="text-muted small fw-medium mb-3"><?php echo __('search_placeholder'); ?></p>
|
||||||
|
<form action="/" method="GET">
|
||||||
|
<div class="input-group bg-light rounded-pill p-1 border">
|
||||||
|
<span class="input-group-text bg-transparent border-0 ps-3">
|
||||||
|
<i class="bi bi-search text-muted small"></i>
|
||||||
|
</span>
|
||||||
|
<input type="text" name="search" class="form-control bg-transparent border-0 py-2 fs-6" placeholder="<?php echo __('search', 'Search...'); ?>">
|
||||||
|
<button class="btn btn-success rounded-pill px-4 fw-bold" type="submit"><?php echo __('search'); ?></button>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
.max-width-600 {
|
||||||
|
max-width: 600px;
|
||||||
|
}
|
||||||
|
.max-width-500 {
|
||||||
|
max-width: 500px;
|
||||||
|
}
|
||||||
|
.bg-light {
|
||||||
|
background-color: #f8f9fa !important;
|
||||||
|
}
|
||||||
|
.shadow-sm {
|
||||||
|
box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important;
|
||||||
|
}
|
||||||
|
@media (max-width: 768px) {
|
||||||
|
.display-3 {
|
||||||
|
font-size: 2.5rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<?php include 'footer.php'; ?>
|
||||||
Loading…
x
Reference in New Issue
Block a user