diff options
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> |
