35227-vm/settings.php
Flatlogic Bot c993331930 v1
2025-10-25 15:42:13 +00:00

50 lines
1.6 KiB
PHP

<?php
// settings.php
// You can add PHP logic here for handling settings in the future.
?>
<!DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>الإعدادات</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
body {
background-color: #f8f9fa;
}
.container {
max-width: 800px;
}
.header {
background-color: #ffffff;
padding: 1rem;
border-bottom: 1px solid #dee2e6;
margin-bottom: 2rem;
display: flex;
justify-content: space-between;
align-items: center;
}
</style>
</head>
<body>
<div class="header">
<h1 class="h4">الإعدادات</h1>
<a href="index.php" class="btn btn-secondary">العودة للرئيسية</a>
</div>
<div class="container">
<div class="card">
<div class="card-body">
<h5 class="card-title">إعدادات التطبيق</h5>
<p class="card-text">هذه الصفحة مخصصة لإعدادات التطبيق المستقبلية.</p>
<!-- Add settings form or options here later -->
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>