From 52b077a48c743ba4d08ac00520a0bf1ef6deef5f Mon Sep 17 00:00:00 2001 From: Thomas Lange Date: Fri, 24 Feb 2017 21:27:59 +0100 Subject: Initial commit. --- template/admin/html/403.php | 2 + template/admin/html/404.php | 2 + template/admin/html/auth.php | 30 ++++++++++++ template/admin/html/database.php | 26 ++++++++++ template/admin/html/home.php | 34 +++++++++++++ template/admin/html/main.php | 52 ++++++++++++++++++++ template/admin/html/page/delete.php | 4 ++ template/admin/html/page/form.php | 91 ++++++++++++++++++++++++++++++++++ template/admin/html/page/index.php | 10 ++++ template/admin/html/page/insert.php | 4 ++ template/admin/html/page/item.php | 16 ++++++ template/admin/html/page/update.php | 4 ++ template/admin/html/pagination.php | 45 +++++++++++++++++ template/admin/html/post/delete.php | 4 ++ template/admin/html/post/form.php | 91 ++++++++++++++++++++++++++++++++++ template/admin/html/post/index.php | 10 ++++ template/admin/html/post/insert.php | 4 ++ template/admin/html/post/item.php | 16 ++++++ template/admin/html/post/update.php | 4 ++ template/admin/html/user/delete.php | 6 +++ template/admin/html/user/form.php | 97 +++++++++++++++++++++++++++++++++++++ template/admin/html/user/index.php | 10 ++++ template/admin/html/user/insert.php | 4 ++ template/admin/html/user/item.php | 15 ++++++ template/admin/html/user/update.php | 4 ++ 25 files changed, 585 insertions(+) create mode 100644 template/admin/html/403.php create mode 100644 template/admin/html/404.php create mode 100644 template/admin/html/auth.php create mode 100644 template/admin/html/database.php create mode 100644 template/admin/html/home.php create mode 100644 template/admin/html/main.php create mode 100644 template/admin/html/page/delete.php create mode 100644 template/admin/html/page/form.php create mode 100644 template/admin/html/page/index.php create mode 100644 template/admin/html/page/insert.php create mode 100644 template/admin/html/page/item.php create mode 100644 template/admin/html/page/update.php create mode 100644 template/admin/html/pagination.php create mode 100644 template/admin/html/post/delete.php create mode 100644 template/admin/html/post/form.php create mode 100644 template/admin/html/post/index.php create mode 100644 template/admin/html/post/insert.php create mode 100644 template/admin/html/post/item.php create mode 100644 template/admin/html/post/update.php create mode 100644 template/admin/html/user/delete.php create mode 100644 template/admin/html/user/form.php create mode 100644 template/admin/html/user/index.php create mode 100644 template/admin/html/user/insert.php create mode 100644 template/admin/html/user/item.php create mode 100644 template/admin/html/user/update.php (limited to 'template/admin/html') diff --git a/template/admin/html/403.php b/template/admin/html/403.php new file mode 100644 index 0000000..aebddb7 --- /dev/null +++ b/template/admin/html/403.php @@ -0,0 +1,2 @@ +

template('403_heading_text')?>

+

template('403_heading_desc')?>

diff --git a/template/admin/html/404.php b/template/admin/html/404.php new file mode 100644 index 0000000..4f841b6 --- /dev/null +++ b/template/admin/html/404.php @@ -0,0 +1,2 @@ +

template('404_heading_text')?>

+

template('404_heading_desc')?>

\ No newline at end of file diff --git a/template/admin/html/auth.php b/template/admin/html/auth.php new file mode 100644 index 0000000..a33be5d --- /dev/null +++ b/template/admin/html/auth.php @@ -0,0 +1,30 @@ +

template('authentication_text')?>

+

template('authentication_desc')?>

+ + + +
+ + + +
+ + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
\ No newline at end of file diff --git a/template/admin/html/database.php b/template/admin/html/database.php new file mode 100644 index 0000000..92c5103 --- /dev/null +++ b/template/admin/html/database.php @@ -0,0 +1,26 @@ +

template('overview_database_text')?>

+

template('overview_database_desc')?>

+ + + +
+ + + +
+ + +
+ +
+ + +
+
+
+ + +
+ +
+
\ No newline at end of file diff --git a/template/admin/html/home.php b/template/admin/html/home.php new file mode 100644 index 0000000..6701f35 --- /dev/null +++ b/template/admin/html/home.php @@ -0,0 +1,34 @@ +

template('overview_dashboard_text')?>

+

template('overview_dashboard_desc')?>

+ +

template('last_post')?>

+

text('posts')?>: | text('post_overview')?> | text('insert')?>

+ + + +

template('home_no_posts')?>

+ + +

template('last_page')?>

+

text('pages')?>: | text('page_overview')?> | text('insert')?>

+ + + + +

template('home_no_pages')?>

+ + +

template('last_user')?>

+

text('users')?>: | text('user_overview')?> | text('insert')?>

+ + + + +

template('home_no_users')?>

+ diff --git a/template/admin/html/main.php b/template/admin/html/main.php new file mode 100644 index 0000000..d2fba38 --- /dev/null +++ b/template/admin/html/main.php @@ -0,0 +1,52 @@ + + + + + + + + + <?=escapeHTML($NAME)?> | Administration + + +
+
+
+ +
Administration
+
PHP7 blogging application by Nerdmind!
+
+
+
+ +
+
+
+
+ +
+ +
+ + \ No newline at end of file diff --git a/template/admin/html/page/delete.php b/template/admin/html/page/delete.php new file mode 100644 index 0000000..95451d8 --- /dev/null +++ b/template/admin/html/page/delete.php @@ -0,0 +1,4 @@ +

text('delete_page')?>

+

template('delete_page_desc')?>

+ + \ No newline at end of file diff --git a/template/admin/html/page/form.php b/template/admin/html/page/form.php new file mode 100644 index 0000000..cf87f82 --- /dev/null +++ b/template/admin/html/page/form.php @@ -0,0 +1,91 @@ + + +
+ + + +
+ + + +
+
+
+
+
id="L_ID" name="id" placeholder="[AUTO_INCREMENT]" value="" />
+
+
+
+
+
+ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+
    + $data):?> +
  • + +
+
+
+
    +
  • +
  • +
  • + +
  • +
  • +
  • +
  • +
  • +
+
+ +
+ +
+ + +
+ + + + + + + +
+
\ No newline at end of file diff --git a/template/admin/html/page/index.php b/template/admin/html/page/index.php new file mode 100644 index 0000000..4d090ca --- /dev/null +++ b/template/admin/html/page/index.php @@ -0,0 +1,10 @@ +

text('page_overview')?>">text('insert')?>

+

template('overview_page_desc')?>

+ + + + \ No newline at end of file diff --git a/template/admin/html/page/insert.php b/template/admin/html/page/insert.php new file mode 100644 index 0000000..d45d79c --- /dev/null +++ b/template/admin/html/page/insert.php @@ -0,0 +1,4 @@ +

text('insert_page')?>

+

template('insert_page_desc')?>

+ + \ No newline at end of file diff --git a/template/admin/html/page/item.php b/template/admin/html/page/item.php new file mode 100644 index 0000000..e1e67b7 --- /dev/null +++ b/template/admin/html/page/item.php @@ -0,0 +1,16 @@ +
  • +
    +

    #

    +
    ">
    +
    +
    +

    +
    + +
  • \ No newline at end of file diff --git a/template/admin/html/page/update.php b/template/admin/html/page/update.php new file mode 100644 index 0000000..d15d784 --- /dev/null +++ b/template/admin/html/page/update.php @@ -0,0 +1,4 @@ +

    text('update_page')?>

    +

    template('update_page_desc')?>

    + + \ No newline at end of file diff --git a/template/admin/html/pagination.php b/template/admin/html/pagination.php new file mode 100644 index 0000000..31b5378 --- /dev/null +++ b/template/admin/html/pagination.php @@ -0,0 +1,45 @@ + + + \ No newline at end of file diff --git a/template/admin/html/post/delete.php b/template/admin/html/post/delete.php new file mode 100644 index 0000000..9be4566 --- /dev/null +++ b/template/admin/html/post/delete.php @@ -0,0 +1,4 @@ +

    text('delete_post')?>

    +

    template('delete_post_desc')?>

    + + \ No newline at end of file diff --git a/template/admin/html/post/form.php b/template/admin/html/post/form.php new file mode 100644 index 0000000..cba4aa8 --- /dev/null +++ b/template/admin/html/post/form.php @@ -0,0 +1,91 @@ + + +
    + + + +
    + + + +
    +
    +
    +
    +
    id="L_ID" name="id" placeholder="[AUTO_INCREMENT]" value="" />
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
      + $data):?> +
    • + +
    +
    +
    +
      +
    • +
    • +
    • + +
    • +
    • +
    • +
    • +
    • +
    +
    + +
    + +
    + + +
    + + + + + + + +
    +
    \ No newline at end of file diff --git a/template/admin/html/post/index.php b/template/admin/html/post/index.php new file mode 100644 index 0000000..481cafe --- /dev/null +++ b/template/admin/html/post/index.php @@ -0,0 +1,10 @@ +

    text('post_overview')?>">text('insert')?>

    +

    template('overview_post_desc')?>

    + + + + \ No newline at end of file diff --git a/template/admin/html/post/insert.php b/template/admin/html/post/insert.php new file mode 100644 index 0000000..df4b26d --- /dev/null +++ b/template/admin/html/post/insert.php @@ -0,0 +1,4 @@ +

    text('insert_post')?>

    +

    template('insert_post_desc')?>

    + + \ No newline at end of file diff --git a/template/admin/html/post/item.php b/template/admin/html/post/item.php new file mode 100644 index 0000000..1b942bd --- /dev/null +++ b/template/admin/html/post/item.php @@ -0,0 +1,16 @@ +
  • +
    +

    #

    +
    ">
    +
    +
    +

    +
    + +
  • \ No newline at end of file diff --git a/template/admin/html/post/update.php b/template/admin/html/post/update.php new file mode 100644 index 0000000..baa119e --- /dev/null +++ b/template/admin/html/post/update.php @@ -0,0 +1,4 @@ +

    text('update_post')?>

    +

    template('update_post_desc')?>

    + + \ No newline at end of file diff --git a/template/admin/html/user/delete.php b/template/admin/html/user/delete.php new file mode 100644 index 0000000..dac4185 --- /dev/null +++ b/template/admin/html/user/delete.php @@ -0,0 +1,6 @@ +

    text('delete_user')?>

    +

    template('delete_user_desc')?>

    + +

    template('delete_user_warning')?>

    + + \ No newline at end of file diff --git a/template/admin/html/user/form.php b/template/admin/html/user/form.php new file mode 100644 index 0000000..c284187 --- /dev/null +++ b/template/admin/html/user/form.php @@ -0,0 +1,97 @@ + + +
    + + + +
    + + + +
    +
    +
    +
    +
    id="L_ID" name="id" placeholder="[AUTO_INCREMENT]" value="" />
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
      + $data):?> +
    • + +
    +
    +
    +
      +
    • +
    • +
    • + +
    • +
    • +
    • +
    • +
    • +
    +
    + +
    + +
    + + +
    + + + + + + + +
    +
    \ No newline at end of file diff --git a/template/admin/html/user/index.php b/template/admin/html/user/index.php new file mode 100644 index 0000000..6b23536 --- /dev/null +++ b/template/admin/html/user/index.php @@ -0,0 +1,10 @@ +

    text('user_overview')?>">text('insert')?>

    +

    template('overview_user_desc')?>

    + + + + \ No newline at end of file diff --git a/template/admin/html/user/insert.php b/template/admin/html/user/insert.php new file mode 100644 index 0000000..54598ee --- /dev/null +++ b/template/admin/html/user/insert.php @@ -0,0 +1,4 @@ +

    text('insert_user')?>

    +

    template('insert_user_desc')?>

    + + \ No newline at end of file diff --git a/template/admin/html/user/item.php b/template/admin/html/user/item.php new file mode 100644 index 0000000..df8e5b1 --- /dev/null +++ b/template/admin/html/user/item.php @@ -0,0 +1,15 @@ +
  • +
    +

    #

    +
    +
    +

    +
    + +
  • \ No newline at end of file diff --git a/template/admin/html/user/update.php b/template/admin/html/user/update.php new file mode 100644 index 0000000..6f7ddae --- /dev/null +++ b/template/admin/html/user/update.php @@ -0,0 +1,4 @@ +

    text('update_user')?>

    +

    template('update_user_desc')?>

    + + \ No newline at end of file -- cgit v1.2.3