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/control.php | |
| 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/control.php')
| -rw-r--r-- | public/app/views/user/control.php | 40 |
1 files changed, 40 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> |
