Minor text changes

This commit is contained in:
inventfvl 2023-05-31 17:55:28 +12:00
parent d1c99ca989
commit 7a36afdf70
5 changed files with 9 additions and 9 deletions

View File

@ -1,4 +1,4 @@
# Grublox website
# GRUBLOX website
A Bootstrap based ROBLOX revival website.
# Todo

View File

@ -19,7 +19,7 @@ $user = new User($con, 0);
</head>
<title><?php echo $pagename; ?> | <?php echo $sitename; ?></title>
<body>
<main class="container mt-3" style="width: 100%; margin-left: 20px;">
<main class="container mt-3" style="height: 90vh;">
<h2>Special thanks to these people for making <?php echo $sitename; ?> possible.</h2><br>
<ul class="list-group float-start me-2">
<li class="list-group-item fs-5 bg-primary text-white">Site developers:</li>

View File

@ -21,26 +21,26 @@ if($conType == 404) {
$errorImage = "https://www.freeiconspng.com/thumbs/minions-png/evil-minions-png-24.png";
$errorTextMain = "404 Not found";
$errorTextExtra = "Whoops! Our minions couldn't find the page you were looking for...";
$errorButton = "<a class='btn btn-primary' href='javascript:history.back()'><h5>Go back to ".$sitename." HQ</h5></a>";
$errorButton = "<a class='btn btn-primary' href='javascript:history.back()'><h5>Go back to ".$sitename."</h5></a>";
}
if($conType == 403) {
$errorImage = "https://i.pinimg.com/originals/c4/d7/55/c4d7559b99559a3dc0f4c43e4e589451.png";
$errorTextMain = "403 Forbidden";
$errorTextExtra = "Get out of here! Confidential data..";
$errorButton = "<a class='btn btn-primary' href='javascript:history.back()'><h5>Go back to ".$sitename." HQ</h5></a>";
$errorButton = "<a class='btn btn-primary' href='javascript:history.back()'><h5>Go back to ".$sitename."</h5></a>";
}
if($conType == 400) {
$errorImage = "https://www.clipartmax.com/png/full/185-1850059_minion-41-despicable-me-minions-thinking.png";
$errorTextMain = "400 Bad Request";
$errorTextExtra = "ummmmmmmmmmmmmm 400 ummmmmmmmmmmmm";
$errorButton = "<a class='btn btn-primary' href='javascript:history.back()'><h5>Go back to ".$sitename." HQ</h5></a>";
$errorButton = "<a class='btn btn-primary' href='javascript:history.back()'><h5>Go back to ".$sitename."</h5></a>";
}
if($conType == 502) {
$errorImage = "https://www.freeiconspng.com/thumbs/minions-png/minions-png-file-8.png";
$errorTextMain = "502 Bad Gateway";
$errorTextExtra = "How does this even work for you if it's using PHP.";
$errorButton = "<a class='btn btn-primary' href='javascript:history.back()'><h5>Go back to ".$sitename." HQ</h5></a>";
$errorButton = "<a class='btn btn-primary' href='javascript:history.back()'><h5>Go back to ".$sitename."</h5></a>";
}
if($conType == 504) {

View File

@ -196,7 +196,7 @@ CREATE TABLE `users` (
`username` varchar(20) NOT NULL,
`password` varchar(450) NOT NULL,
`date` datetime NOT NULL DEFAULT current_timestamp(),
`description` varchar(250) DEFAULT 'Hello, I''m new to Grublox!',
`description` varchar(250) DEFAULT 'Hello, I''m new to GRUBLOX!',
`status` varchar(50) NOT NULL DEFAULT 'Status!',
`money` int(11) NOT NULL DEFAULT 10,
`lastPaid` varchar(30) DEFAULT current_timestamp(),
@ -211,7 +211,7 @@ CREATE TABLE `users` (
--
INSERT INTO `users` (`id`, `username`, `password`, `date`, `description`, `status`, `money`, `lastPaid`, `admin`, `ip`, `thumbnail`, `headshot`) VALUES
(1, 'Administrator', '$2y$10$fcG4VepUNZgspPjRrlI6y.Gg09.nwEZ5JF.SuFsax3KHBo90JywmO', '2023-05-06 09:41:58', 'Hello, I\'m new to Grublox!', 'Status!', 35, '1683358919', 0, '', '', '');
(1, 'Administrator', '$2y$10$fcG4VepUNZgspPjRrlI6y.Gg09.nwEZ5JF.SuFsax3KHBo90JywmO', '2023-05-06 09:41:58', 'Hello, I\'m new to GRUBLOX!', 'Status!', 35, '1683358919', 0, '', '', '');
--
-- Indexes for dumped tables

View File

@ -37,7 +37,7 @@ body {
<div class="card shadow-sm bg-dark text-white text-center z-2">
<div class="card-body">
<h1 class="gotham fs-1"><?php echo $sitename; ?></h1>
<h3>the funny website with</h3>
<h3>"do what you think."</h3>
<a type="button" class="btn btn-secondary" href="/register">Register</a>
<a type="button" class="btn btn-secondary" href="/login">Login</a>