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();