diff options
Diffstat (limited to 'public/app/views/user')
| -rw-r--r-- | public/app/views/user/control.php | 1 | ||||
| -rw-r--r-- | public/app/views/user/invitation.php | 1 | ||||
| -rw-r--r-- | public/app/views/user/login.php | 5 | ||||
| -rw-r--r-- | public/app/views/user/panel.php | 3 | ||||
| -rw-r--r-- | public/app/views/user/update_password.php | 5 | ||||
| -rw-r--r-- | public/app/views/user/update_properties.php | 5 |
6 files changed, 16 insertions, 4 deletions
diff --git a/public/app/views/user/control.php b/public/app/views/user/control.php index b429dc6..233e278 100644 --- a/public/app/views/user/control.php +++ b/public/app/views/user/control.php @@ -2,6 +2,7 @@ <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 diff --git a/public/app/views/user/invitation.php b/public/app/views/user/invitation.php index 64e5bcb..3544b90 100644 --- a/public/app/views/user/invitation.php +++ b/public/app/views/user/invitation.php @@ -2,6 +2,7 @@ <html lang="en"> <head> <meta charset="utf-8"> + <meta name="viewport" content="width=device-width initial-scale=1"> <title><?=SITE_TITLE?> - Εγγραφή</title> <?php // header includes diff --git a/public/app/views/user/login.php b/public/app/views/user/login.php index 169a72b..54972df 100644 --- a/public/app/views/user/login.php +++ b/public/app/views/user/login.php @@ -2,11 +2,14 @@ <html lang="en"> <head> <meta charset="utf-8"> + <meta name="viewport" content="width=device-width initial-scale=1"> <title><?=SITE_TITLE?> - Είσοδος Χρήστη</title> <?php // header includes //////////////////////////////////////////////////////////////////////// - Render::view('components/header_includes', [ 'no_dataTables' => true ]); + Render::view('components/header_includes', + [ 'no_dataTables' => true, 'no_pdfmake' => true ] + ); ?> <style> :root { /* login-form overides */ diff --git a/public/app/views/user/panel.php b/public/app/views/user/panel.php index 304237b..a371852 100644 --- a/public/app/views/user/panel.php +++ b/public/app/views/user/panel.php @@ -2,11 +2,12 @@ <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'); + Render::view('components/header_includes', [ 'no_pdfmake' => true ]); ?> <style> :root { /* login-form overides */ diff --git a/public/app/views/user/update_password.php b/public/app/views/user/update_password.php index b415f7c..ee91390 100644 --- a/public/app/views/user/update_password.php +++ b/public/app/views/user/update_password.php @@ -2,11 +2,14 @@ <html lang="en"> <head> <meta charset="utf-8"> + <meta name="viewport" content="width=device-width initial-scale=1"> <title><?=SITE_TITLE?> - Αλλαγή Password</title> <?php // header includes //////////////////////////////////////////////////////////////////////// - Render::view('components/header_includes', [ 'no_dataTables' => true ]); + Render::view('components/header_includes', + [ 'no_dataTables' => true, 'no_pdfmake' => true ] + ); ?> </head> <body class="office central-form"> diff --git a/public/app/views/user/update_properties.php b/public/app/views/user/update_properties.php index 363016a..4af5bfe 100644 --- a/public/app/views/user/update_properties.php +++ b/public/app/views/user/update_properties.php @@ -2,11 +2,14 @@ <html lang="en"> <head> <meta charset="utf-8"> + <meta name="viewport" content="width=device-width initial-scale=1"> <title><?=SITE_TITLE?> - Ενημέρωση στοιχείων</title> <?php // header includes //////////////////////////////////////////////////////////////////////// - Render::view('components/header_includes'); + Render::view('components/header_includes', + [ 'no_dataTables' => true, 'no_pdfmake' => true ] + ); ?> </head> <body class="office central-form"> |
