diff --git a/.htaccess b/.htaccess
index e2bbc23..8fad147 100644
--- a/.htaccess
+++ b/.htaccess
@@ -1,18 +1,7 @@
-DirectoryIndex index.php index.html
+# Prevent directory listing
Options -Indexes
-Options -MultiViews
-RewriteEngine On
-
-# 0) Serve existing files/directories as-is
-RewriteCond %{REQUEST_FILENAME} -f [OR]
-RewriteCond %{REQUEST_FILENAME} -d
-RewriteRule ^ - [L]
-
-# 1) Internal map: /page or /page/ -> /page.php (if such PHP file exists)
-RewriteCond %{REQUEST_FILENAME}.php -f
-RewriteRule ^(.+?)/?$ $1.php [L]
-
-# 2) Optional: strip trailing slash for non-directories (keeps .php links working)
-RewriteCond %{REQUEST_FILENAME} !-d
-RewriteRule ^(.+)/$ $1 [R=301,L]
+# Deny access to sensitive files
+
+ Require all denied
+
\ No newline at end of file
diff --git a/assets/css/custom.css b/assets/css/custom.css
new file mode 100644
index 0000000..0c882b8
--- /dev/null
+++ b/assets/css/custom.css
@@ -0,0 +1,47 @@
+body {
+ font-family: 'Inter', sans-serif;
+}
+
+.login-body {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ height: 100vh;
+ background-color: #f8f9fa;
+}
+
+.login-container {
+ max-width: 400px;
+ width: 100%;
+ padding: 15px;
+}
+
+.sidebar {
+ width: 280px;
+ height: 100vh;
+ position: sticky;
+ top: 0;
+}
+
+.main-content {
+ background-color: #e9ecef;
+ min-height: 100vh;
+}
+
+.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
+ background-color: #198754;
+}
+
+.nav-link:hover {
+ background-color: #e9ecef;
+}
+
+.btn-primary {
+ background-color: #198754;
+ border-color: #198754;
+}
+
+.btn-primary:hover {
+ background-color: #157347;
+ border-color: #146c43;
+}
diff --git a/assets/js/main.js b/assets/js/main.js
new file mode 100644
index 0000000..be427b7
--- /dev/null
+++ b/assets/js/main.js
@@ -0,0 +1 @@
+// Custom javascript can be added here.
diff --git a/auth.php b/auth.php
new file mode 100644
index 0000000..ed0484c
--- /dev/null
+++ b/auth.php
@@ -0,0 +1,16 @@
+
\ No newline at end of file
diff --git a/footer.php b/footer.php
new file mode 100644
index 0000000..068cf49
--- /dev/null
+++ b/footer.php
@@ -0,0 +1,6 @@
+
+
+
+
+