From 6bac98ed54535d58fc61de534fba5e48f560e7ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nejc=20Kova=C4=8D?= Date: Tue, 21 Jun 2022 08:58:43 +0200 Subject: [PATCH 001/110] Landing page --> landing page window popravki --- frontend/simple/classes/DisplayController.php | 33 ++++++++---- frontend/simple/css/style.css | 52 +++++++++++++++++++ 2 files changed, 74 insertions(+), 11 deletions(-) diff --git a/frontend/simple/classes/DisplayController.php b/frontend/simple/classes/DisplayController.php index 36aba06ce..3340a1585 100644 --- a/frontend/simple/classes/DisplayController.php +++ b/frontend/simple/classes/DisplayController.php @@ -391,11 +391,21 @@ class DisplayController{ echo '
'.AppSettings::getInstance()->getSetting('app_settings-app_name').'
'; - - + echo '
'; + echo '
TEST 1KA
'; + + // APP SUBTITLE + echo '
'; + if(isVirtual()) + echo $lang['app_virtual_domain']; + else + echo $lang['app_installation']; + echo '
'; // WHITE BOX FOR LOGIN / REGISTRATION - echo '
'; + + echo '
'; + // Tabs - samo pri lastni instalaciji, pri virtualkah nimamo registracije if(isVirtual()){ echo '
'; @@ -429,17 +439,18 @@ class DisplayController{ $this->displayFrontPageRegistration(); echo '
'; } - + + echo '
'; echo '
'; - // APP SUBTITLE - echo '
'; - if(isVirtual()) - echo $lang['app_virtual_domain']; - else - echo $lang['app_installation']; - echo '
'; + // // APP SUBTITLE + // echo '
'; + // if(isVirtual()) + // echo $lang['app_virtual_domain']; + // else + // echo $lang['app_installation']; + // echo '
'; } // Izris okna na prvi strani - AAI diff --git a/frontend/simple/css/style.css b/frontend/simple/css/style.css index 016600ca3..f5bda1d33 100644 --- a/frontend/simple/css/style.css +++ b/frontend/simple/css/style.css @@ -892,3 +892,55 @@ body.login_noEmail #content.aai #main .main_content .app_subtitle { } /*# sourceMappingURL=style.css.map */ + + +/* + Author : Nejc Kovač + Urejanje landing page +*/ + +@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600;700&display=swap"); + +body.landing_page #main { + background-image: none; +} + +.landing_page_content { + font-family: "Source Sans Pro", "sans-serif"; + text-align: center; + color: #333333; + +} + +.landing_page_content .landing_page_title { + font-weight: 300; + font-size: 50px; + line-height: 63px; +} + + + +body.landing_page #main .app_subtitle { + text-shadow: unset; + color: #333333; +} + +body.landing_page #main .landing_page_window { + border: 1px solid #C4C4C4; + max-width: 400px; + width: unset; + min-height: 327px; +} + +body.landing_page #main .landing_page_window .tabs .tab { + font-size: 16px; + font-weight: 600; + + background-color: unset; + color: #777777; +} + +body.landing_page #main .landing_page_window .tabs .tab.active { + color: #1E88E5; +} + From 92413516338d4d3b08ab94eb88ec355e7c0325a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nejc=20Kova=C4=8D?= Date: Tue, 21 Jun 2022 09:36:40 +0200 Subject: [PATCH 002/110] Landing page --> landing page window popravki --- frontend/simple/classes/DisplayController.php | 11 ++-- frontend/simple/css/style.css | 54 ++++++++++++++++++- 2 files changed, 60 insertions(+), 5 deletions(-) diff --git a/frontend/simple/classes/DisplayController.php b/frontend/simple/classes/DisplayController.php index 3340a1585..02a4082d4 100644 --- a/frontend/simple/classes/DisplayController.php +++ b/frontend/simple/classes/DisplayController.php @@ -554,11 +554,11 @@ class DisplayController{ // Email echo ' '; - echo ' '; + echo ' '; // Password echo ' '; - echo ' '; + echo ' '; // Error text if($error != ''){ @@ -574,11 +574,14 @@ class DisplayController{ echo '
'; } + // Submit + echo ' '; + // Lost pass echo '
'.$lang['forgot_password'].'
'; - // Submit - echo ' '; + // // Submit + // echo ' '; echo ''; } diff --git a/frontend/simple/css/style.css b/frontend/simple/css/style.css index f5bda1d33..42f9ce3c5 100644 --- a/frontend/simple/css/style.css +++ b/frontend/simple/css/style.css @@ -906,7 +906,7 @@ body.landing_page #main { } .landing_page_content { - font-family: "Source Sans Pro", "sans-serif"; + font-family: "Source Sans Pro"; text-align: center; color: #333333; @@ -923,6 +923,12 @@ body.landing_page #main { body.landing_page #main .app_subtitle { text-shadow: unset; color: #333333; + + font-weight: 400px; + line-height: 26px; + + margin-top: 25px; + margin-bottom: 24px; } body.landing_page #main .landing_page_window { @@ -932,6 +938,10 @@ body.landing_page #main .landing_page_window { min-height: 327px; } +body.landing_page #main .landing_page_window #login_holder .login_form { + padding: 25px 23px; +} + body.landing_page #main .landing_page_window .tabs .tab { font-size: 16px; font-weight: 600; @@ -944,3 +954,45 @@ body.landing_page #main .landing_page_window .tabs .tab.active { color: #1E88E5; } +body.landing_page #main .landing_page_window label { + text-align: left; + + margin: 15px 0px 4px 0px; +} + +.landing_page_window input[type="text"] { + padding: 0px; + height: 38px; + max-width: 354px; +} +.landing_page_window input[type="password"] { + padding: 0px; + height: 38px; + max-width: 354px; +} + + +body.landing_page #main .landing_page_window input[type="submit"] { + align-self: unset; + width: unset; + max-width: 354px; + + margin: 16px 0px; + + font-weight: 700; + padding: 12.5px 0px; + line-height: 20px; +} + + + +body.landing_page #main .landing_page_window #login_holder .login_form .lostpass { + position: unset; + text-align: left; + text-decoration-line: underline; + text-decoration-color: #1e88e5; + font-weight: 400; + font-size: 16px; + line-height: 20px; + +} \ No newline at end of file From 24b5e2410f97eb2698a74839fb28e63da255b275 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nejc=20Kova=C4=8D?= Date: Tue, 21 Jun 2022 09:40:26 +0200 Subject: [PATCH 003/110] Landing page window - spremenjen tekst gumba --- lang/1.php | 2 +- lang/2.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lang/1.php b/lang/1.php index 267b29ad2..115721a89 100644 --- a/lang/1.php +++ b/lang/1.php @@ -557,7 +557,7 @@ $lang = array ( "base_displayinsert" => "Vnos", "base_displaylabel" => "Pregled", "base_alternative" => "Alternativni napisi", - "next1" => "Naprej", + "next1" => "Prijava", "vpisal" => "Vpisal", "spremenil" => "Spremenil", "show_menu" => "Prikaži menu", diff --git a/lang/2.php b/lang/2.php index 48bbc1188..53cc338fa 100644 --- a/lang/2.php +++ b/lang/2.php @@ -544,7 +544,7 @@ $lang = array ( "base_displayinsert" => "Insert", "base_displaylabel" => "View", "base_alternative" => "Alternative labels", - "next1" => "Next", + "next1" => "Login", "vpisal" => "Posted by", "spremenil" => "Changed by", "show_menu" => "Show menu", From a268fe710f06c0d9b1ff676642977c268b21f8e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nejc=20Kova=C4=8D?= Date: Tue, 21 Jun 2022 10:34:24 +0200 Subject: [PATCH 004/110] Register from - popravljena napaka pri E-mailu --- frontend/simple/classes/DisplayController.php | 8 ++++---- frontend/simple/css/style.css | 20 +++++++++++++++++-- 2 files changed, 22 insertions(+), 6 deletions(-) diff --git a/frontend/simple/classes/DisplayController.php b/frontend/simple/classes/DisplayController.php index 02a4082d4..d6a245c4c 100644 --- a/frontend/simple/classes/DisplayController.php +++ b/frontend/simple/classes/DisplayController.php @@ -621,17 +621,17 @@ class DisplayController{ } - echo '
'; + echo ''; - echo ' '.$lang['cms_register_user_text'].''; + // echo ' '.$lang['cms_register_user_text'].''; // Email - echo '