From 2ef5b6d54a9b5b04a9eafdfa31fbeefedda22e7c Mon Sep 17 00:00:00 2001 From: Fluffy-Bean Date: Wed, 2 Nov 2022 16:02:40 +0000 Subject: [PATCH] Logo support slowly coming Fixing CSS typos Fixing alert typos --- .gitignore | 1 + app/account/account.php | 2 +- assets/ui/nav.php | 5 +++++ css/main.css | 22 +++++++++++++++++++--- css/main.scss | 17 ++++++++++++++--- css/scss/_navigation.scss | 21 +++++++++++++++++++-- usr/conf.default.json | 1 + 7 files changed, 60 insertions(+), 9 deletions(-) diff --git a/.gitignore b/.gitignore index e28a543..073e05c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ # Dont include user generated content in github repo images/ conf/ +usr/logo.* *.map # Dont include PHPStorm project files diff --git a/app/account/account.php b/app/account/account.php index f981df3..3c28cba 100644 --- a/app/account/account.php +++ b/app/account/account.php @@ -242,7 +242,7 @@ if (isset($_POST['submit_signup'])) { $error = $error + 1; } elseif(strlen(trim($_POST["password"])) < 6){ // Password not long enough 👀 - echo "

Not long enough for my taste 👀

"; + echo "

(Password) Not long enough for my taste 👀

"; $error = $error + 1; } else { $password = trim($_POST["password"]); diff --git a/assets/ui/nav.php b/assets/ui/nav.php index 0cec3b7..927564f 100644 --- a/assets/ui/nav.php +++ b/assets/ui/nav.php @@ -7,6 +7,11 @@ $loggedin = new Account();