From d0601a55010cd9fe2f2587ce157ce059e5da732e Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Sat, 21 Feb 2009 18:05:42 -0500 Subject: Started admin panel --- admin/.htaccess | 4 ++++ admin/add.php | 30 ++++++++++++++++++++++++++++++ admin/index.php | 27 +++++++++++++++++++++++++++ admin/login.php | 30 ++++++++++++++++++++++++++++++ admin/logout.php | 7 +++++++ admin/main.php | 8 ++++++++ admin/manage.php | 15 +++++++++++++++ admin/remove.php | 8 ++++++++ admin/update.php | 5 +++++ 9 files changed, 134 insertions(+) create mode 100755 admin/.htaccess create mode 100644 admin/add.php create mode 100755 admin/index.php create mode 100644 admin/login.php create mode 100644 admin/logout.php create mode 100644 admin/main.php create mode 100644 admin/manage.php create mode 100644 admin/remove.php create mode 100644 admin/update.php (limited to 'admin') diff --git a/admin/.htaccess b/admin/.htaccess new file mode 100755 index 0000000..d590e40 --- /dev/null +++ b/admin/.htaccess @@ -0,0 +1,4 @@ +RewriteEngine On +RewriteCond %{REQUEST_FILENAME} !index.php +RewriteCond %{REQUEST_FILENAME} !-d +RewriteRule (.*).php /admin/index.php?file=$1 [QSA,L] diff --git a/admin/add.php b/admin/add.php new file mode 100644 index 0000000..96a9219 --- /dev/null +++ b/admin/add.php @@ -0,0 +1,30 @@ + + +Added comic ! diff --git a/admin/index.php b/admin/index.php new file mode 100755 index 0000000..3a5f6be --- /dev/null +++ b/admin/index.php @@ -0,0 +1,27 @@ + diff --git a/admin/login.php b/admin/login.php new file mode 100644 index 0000000..f938664 --- /dev/null +++ b/admin/login.php @@ -0,0 +1,30 @@ + +
+Username:
+Password:
+
+

Incorrect login

diff --git a/admin/logout.php b/admin/logout.php new file mode 100644 index 0000000..639e045 --- /dev/null +++ b/admin/logout.php @@ -0,0 +1,7 @@ + diff --git a/admin/main.php b/admin/main.php new file mode 100644 index 0000000..aa01262 --- /dev/null +++ b/admin/main.php @@ -0,0 +1,8 @@ +

Admin Panel

+ + diff --git a/admin/manage.php b/admin/manage.php new file mode 100644 index 0000000..2485520 --- /dev/null +++ b/admin/manage.php @@ -0,0 +1,15 @@ + + +Back to Admin diff --git a/admin/remove.php b/admin/remove.php new file mode 100644 index 0000000..bf8e565 --- /dev/null +++ b/admin/remove.php @@ -0,0 +1,8 @@ + + +Removed comic ! diff --git a/admin/update.php b/admin/update.php new file mode 100644 index 0000000..c84c2c4 --- /dev/null +++ b/admin/update.php @@ -0,0 +1,5 @@ + -- cgit 1.4.1