From 2966bf66ac4460e5ddc573adea84da8f8d147041 Mon Sep 17 00:00:00 2001 From: nolanwhy Date: Sat, 4 Feb 2023 22:22:55 +0100 Subject: [PATCH 1/4] Update grublox.sql --- grublox.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grublox.sql b/grublox.sql index 5a7d553..8380b1a 100644 --- a/grublox.sql +++ b/grublox.sql @@ -30,7 +30,7 @@ SET time_zone = "+00:00"; CREATE TABLE `users` ( `id` int(11) NOT NULL, `username` varchar(20) NOT NULL, - `password` varchar(450) NOT NULL, + `password` varchar(500) NOT NULL, `date` datetime NOT NULL DEFAULT current_timestamp(), `token` varchar(25) DEFAULT NULL COMMENT 'Token for joining. Useful to secure joining to prevent unauthorized users to use other names.', `description` varchar(250) DEFAULT NULL, From 7b81689b62e1fd615b075a9acfadce5914cb3f0c Mon Sep 17 00:00:00 2001 From: nolanwhy Date: Sat, 4 Feb 2023 22:31:41 +0100 Subject: [PATCH 2/4] Update user.php --- user.php | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/user.php b/user.php index 0a2e7fa..ff356b8 100644 --- a/user.php +++ b/user.php @@ -35,9 +35,21 @@ $getitstarted->header(); <?php echo $sitename; ?> | <?php echo htmlspecialchars($requestUser["username"]); ?> -

yeah im not hired to fucking make css/html -nolanwhy

-

welcome to 's profile!!!!!

-

his acc was created at -

thats all

+
+
+
+ + +

+

"i love sex grublox"

+ +
+
From cf82b401dc9157f33d6c9f94a63223c2fc46791f Mon Sep 17 00:00:00 2001 From: nolanwhy Date: Sat, 4 Feb 2023 22:33:03 +0100 Subject: [PATCH 3/4] Create global.css --- css/global.css | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 css/global.css diff --git a/css/global.css b/css/global.css new file mode 100644 index 0000000..e69de29 From 5e7398650a07b6f941190594fa014794a097c223 Mon Sep 17 00:00:00 2001 From: nolanwhy Date: Sat, 4 Feb 2023 22:38:57 +0100 Subject: [PATCH 4/4] added new css so you can't steal navbar logo lmao --- core/classes.php | 6 +++--- css/global.css | 6 ++++++ 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/core/classes.php b/core/classes.php index 8fbeb78..fc0dcf9 100644 --- a/core/classes.php +++ b/core/classes.php @@ -11,7 +11,7 @@ class PartyStarter { function header() { // to not confuse you i renamed it from loggedoutheader to header since qzip made it both lol require ('core/config.php'); - $grubloxlogotohome = ''; + $grubloxlogotohome = ''; $showhome = ''; if (isset($_SESSION['user'])) { $showhome = ' '; - $grubloxlogotohome = ''; + $grubloxlogotohome = ''; $query = $con->prepare('SELECT money FROM users WHERE id=:id'); $query->bindParam(':id', $id); $query->execute(); @@ -52,7 +52,7 @@ class PartyStarter { Login '; } - echo ' + echo ' diff --git a/css/global.css b/css/global.css index e69de29..c7f6ead 100644 --- a/css/global.css +++ b/css/global.css @@ -0,0 +1,6 @@ +.headerLogo{ + background-image: url(/assets/icons/Grublox.png); + background-size: 131px 30px; + width: 131px; + height: 30px; +} \ No newline at end of file