blob: 233e278b16ea490c9cbd0a6216d85fb30b9078dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width initial-scale=1">
<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>
|