diff options
| author | Geo Halkiadakis <gchalkiadakis@sklavenitis.co.gr> | 2023-05-26 19:14:56 +0300 |
|---|---|---|
| committer | Geo Halkiadakis <gchalkiadakis@sklavenitis.co.gr> | 2023-05-26 19:14:56 +0300 |
| commit | 38cc5c0c3abed6cfe4fbe0cbabec60a8ed64784d (patch) | |
| tree | 1202a16a980ab18efe60b1efdeed9218eda5320f /public/app/views/user | |
| parent | 64da2d519297302400930785a968ac3a19bddfb3 (diff) | |
| download | gyraf1gov-38cc5c0c3abed6cfe4fbe0cbabec60a8ed64784d.tar.gz gyraf1gov-38cc5c0c3abed6cfe4fbe0cbabec60a8ed64784d.tar.bz2 gyraf1gov-38cc5c0c3abed6cfe4fbe0cbabec60a8ed64784d.zip | |
user menu and contol panel are ready
Diffstat (limited to 'public/app/views/user')
| -rw-r--r-- | public/app/views/user/control.php | 40 | ||||
| -rw-r--r-- | public/app/views/user/panel.php | 59 |
2 files changed, 99 insertions, 0 deletions
diff --git a/public/app/views/user/control.php b/public/app/views/user/control.php new file mode 100644 index 0000000..b429dc6 --- /dev/null +++ b/public/app/views/user/control.php @@ -0,0 +1,40 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="utf-8"> + <title><?=SITE_TITLE?> - Control Panel</title> + + <?php // header includes + //////////////////////////////////////////////////////////////////////// + Render::view('components/header_includes'); + ?> +<style> +:root { /* login-form overides */ + --form-content-font-size: 1rem; + --form-input-height: 34px; + --select2-arrow-top: 1px; +} +</style> +</head> +<body class="office central-form"> + + <div class='container'> + <div class='content row'> + + <div class="col-2 info"> + <?php // menu + //////////////////////////////////////////////////////////////////// + Render::view('components/menu'); + ?> + </div> + + <div class="col-10"> + <!-- table --> + </div> + + </div> + </div> + +</body> + +</html> diff --git a/public/app/views/user/panel.php b/public/app/views/user/panel.php new file mode 100644 index 0000000..6888a7a --- /dev/null +++ b/public/app/views/user/panel.php @@ -0,0 +1,59 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="utf-8"> + <title><?=SITE_TITLE?> - Control Panel</title> + + <?php // header includes + //////////////////////////////////////////////////////////////////////// + Render::view('components/header_includes'); + ?> +<style> +:root { /* login-form overides */ + --form-content-font-size: 1rem; + --form-input-height: 34px; + --select2-arrow-top: 1px; +} +</style> +</head> +<body class="office central-form left-menu"> + + <div class='container'> + <div class='content row'> + + <div class="col-xs-12 col-sm-3 info"> + <?php // menu + //////////////////////////////////////////////////////////////////// + Render::view('components/menu'); + ?> + </div> + + <div class="col-xs-12 col-sm-9"> + + <!-- content + ** petitions datatable + * change password -> link out (?) + * update properties -> link out (?) + ** admin petitions datatable + * send invitations -> link out (?) + * create member -> link out (?) + + TODO: + switch / case (?) + --> + + </div> + + </div> + </div> + +</body> + +<!-- scripts + * handle show petition request + + if admin: + * modal + give protocol-number +--> + +</html> |
