From de6d6088571b2365947adffca40dbb48048c3bca Mon Sep 17 00:00:00 2001 From: Joey Kimsey Date: Sat, 14 Dec 2024 06:15:47 -0500 Subject: [PATCH] Bootstrap 5 updates continued --- .gitignore | 1 + .../admin/{contact.php => send_mail.php} | 8 +- app/controllers/home.php | 2 +- app/css/main-dark.css | 3 + app/css/main.css | 18 +- app/plugins/blog/views/admin/dashboard.html | 2 +- app/plugins/blog/views/admin/list.html | 2 +- app/plugins/blog/views/recentWidget.html | 4 +- app/plugins/bugreport/views/admin/view.html | 4 +- app/plugins/bugreport/views/create.html | 3 +- .../comments/views/admin/dashboard.html | 2 +- app/plugins/comments/views/admin/list.html | 2 +- app/plugins/comments/views/list.html | 37 +- .../controllers/admin/contact.php} | 28 +- .../controllers/contact.php} | 28 +- app/plugins/{feedback => contact}/forms.php | 20 +- .../models/contact.php} | 20 +- app/plugins/{feedback => contact}/plugin.php | 30 +- .../views/admin/list.html | 10 +- .../views/admin/view.html | 8 +- .../{feedback => contact}/views/create.html | 26 +- .../{feedback => contact}/views/feedback.html | 0 app/templates/default/default.inc.php | 1 + app/templates/default/default.tpl | 2 +- app/views/about.html | 7 +- app/views/admin/dashboard/users.html | 2 +- app/views/admin/groups/list.html | 2 +- app/views/admin/groups/list_members.html | 2 +- app/views/admin/groups/view.html | 4 +- app/views/admin/modules/models/view.html | 4 +- app/views/admin/modules/plugins/view.html | 4 +- app/views/admin/routes/list.html | 2 +- app/views/admin/routes/view.html | 4 +- app/views/admin/tokens/view.html | 4 +- app/views/admin/users/list.html | 2 +- app/views/admin/users/view.html | 6 +- app/views/faq.html | 3 +- app/views/login.html | 92 ++-- app/views/nav/statusLoggedIn.html | 2 +- app/views/nav/statusLoggedOut.html | 10 +- app/views/privacy.html | 402 +++++++++--------- app/views/profile.html | 4 +- app/views/termsPage.html | 6 + index.php | 5 + 44 files changed, 439 insertions(+), 389 deletions(-) rename app/controllers/admin/{contact.php => send_mail.php} (93%) rename app/plugins/{feedback/controllers/admin/feedback.php => contact/controllers/admin/contact.php} (63%) rename app/plugins/{feedback/controllers/feedback.php => contact/controllers/contact.php} (58%) rename app/plugins/{feedback => contact}/forms.php (69%) rename app/plugins/{feedback/models/feedback.php => contact/models/contact.php} (80%) rename app/plugins/{feedback => contact}/plugin.php (65%) rename app/plugins/{feedback => contact}/views/admin/list.html (66%) rename app/plugins/{feedback => contact}/views/admin/view.html (88%) rename app/plugins/{feedback => contact}/views/create.html (54%) rename app/plugins/{feedback => contact}/views/feedback.html (100%) create mode 100644 app/views/termsPage.html diff --git a/.gitignore b/.gitignore index 433fc3b..1f20d36 100644 --- a/.gitignore +++ b/.gitignore @@ -63,3 +63,4 @@ mail.log vendor/canary/logs/* .env components/* +mailhog.log diff --git a/app/controllers/admin/contact.php b/app/controllers/admin/send_mail.php similarity index 93% rename from app/controllers/admin/contact.php rename to app/controllers/admin/send_mail.php index a71f3c6..e89a3dd 100644 --- a/app/controllers/admin/contact.php +++ b/app/controllers/admin/send_mail.php @@ -1,8 +1,8 @@ @@ -19,13 +19,13 @@ use TheTempusProject\Houdini\Classes\Views; use TheTempusProject\Models\User; use TheTempusProject\Models\Subscribe; -class Contact extends AdminController { +class SendMail extends AdminController { public static $user; public static $subscribe; public function __construct() { parent::__construct(); - self::$title = 'Admin - Contact'; + self::$title = 'Admin - Send Mail'; self::$user = new User; self::$subscribe = new Subscribe; } diff --git a/app/controllers/home.php b/app/controllers/home.php index 3d91789..daf116d 100644 --- a/app/controllers/home.php +++ b/app/controllers/home.php @@ -86,7 +86,7 @@ class Home extends Controller { self::$title = 'Terms and Conditions - {SITENAME}'; self::$pageDescription = '{SITENAME} Terms and Conditions of use. Please use {SITENAME} safely.'; Components::set( 'TERMS', Views::simpleView( 'terms' ) ); - Views::raw( '
{TERMS}
' ); + Views::view( 'termsPage' ); } public function hashtag( $id = null ) { diff --git a/app/css/main-dark.css b/app/css/main-dark.css index 3d33e90..c76d335 100644 --- a/app/css/main-dark.css +++ b/app/css/main-dark.css @@ -15,6 +15,9 @@ .context-main-bg { background-color: #2c2c2c; } +.bg-default { + background-color: #2c2c2c; +} .context-other { color: #000; } diff --git a/app/css/main.css b/app/css/main.css index 74e1631..7f64ee8 100644 --- a/app/css/main.css +++ b/app/css/main.css @@ -9,12 +9,15 @@ * @license https://opensource.org/licenses/MIT [MIT LICENSE] */ - + .context-other-bg { + background-color: #eaeaea; +} .context-main-bg { background-color: #f7f7f7; } + /* Base styles for the switch container */ .material-switch { position: relative; @@ -295,4 +298,15 @@ body { .feature-icon-small { width: 3rem; height: 3rem; -} \ No newline at end of file +} + +.gradient-custom-2 { + /* fallback for old browsers */ + background: #fccb90; + + /* Chrome 10-25, Safari 5.1-6 */ + background: -webkit-linear-gradient(to right, #2c2c2c, #1e1e1e, #1e1e1e); + + /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */ + background: linear-gradient(to right, #2c2c2c, #1e1e1e, #1e1e1e); +} diff --git a/app/plugins/blog/views/admin/dashboard.html b/app/plugins/blog/views/admin/dashboard.html index 0f64a36..e7984f2 100644 --- a/app/plugins/blog/views/admin/dashboard.html +++ b/app/plugins/blog/views/admin/dashboard.html @@ -15,7 +15,7 @@ {title} {contentSummary} - + {/LOOP} diff --git a/app/plugins/blog/views/admin/list.html b/app/plugins/blog/views/admin/list.html index 702eea4..436c766 100644 --- a/app/plugins/blog/views/admin/list.html +++ b/app/plugins/blog/views/admin/list.html @@ -24,7 +24,7 @@ {commentCount} {DTC}{created}{/DTC} {DTC}{edited}{/DTC} - + diff --git a/app/plugins/blog/views/recentWidget.html b/app/plugins/blog/views/recentWidget.html index 155978b..e256079 100644 --- a/app/plugins/blog/views/recentWidget.html +++ b/app/plugins/blog/views/recentWidget.html @@ -1,5 +1,5 @@ -
-
+
+

Recent Posts

    diff --git a/app/plugins/bugreport/views/admin/view.html b/app/plugins/bugreport/views/admin/view.html index 7aaaecf..6b8b5b9 100644 --- a/app/plugins/bugreport/views/admin/view.html +++ b/app/plugins/bugreport/views/admin/view.html @@ -1,7 +1,7 @@
    -
    -
    +
    +

    Bug Report

    diff --git a/app/plugins/bugreport/views/create.html b/app/plugins/bugreport/views/create.html index 5dd63c0..1b3ce74 100644 --- a/app/plugins/bugreport/views/create.html +++ b/app/plugins/bugreport/views/create.html @@ -1,4 +1,5 @@ -
    + +

    Bug Report

    Thank you for visiting our bug reporting page. We value our users' input highly and in an effort to better serve your needs, please fill out the form below to help us address this issue.

    We read each and every bug report submitted, and by submitting this form you allow us to send you a follow-up email.

    diff --git a/app/plugins/comments/views/admin/dashboard.html b/app/plugins/comments/views/admin/dashboard.html index 7fc7b6d..f0c27b1 100644 --- a/app/plugins/comments/views/admin/dashboard.html +++ b/app/plugins/comments/views/admin/dashboard.html @@ -13,7 +13,7 @@ {authorName} {content} - + {/LOOP} diff --git a/app/plugins/comments/views/admin/list.html b/app/plugins/comments/views/admin/list.html index 37b460d..20c49c4 100644 --- a/app/plugins/comments/views/admin/list.html +++ b/app/plugins/comments/views/admin/list.html @@ -22,7 +22,7 @@ {contentTitle} {content} {DTC}{created}{/DTC} - + diff --git a/app/plugins/comments/views/list.html b/app/plugins/comments/views/list.html index 2a4777d..840d104 100644 --- a/app/plugins/comments/views/list.html +++ b/app/plugins/comments/views/list.html @@ -1,22 +1,23 @@
    -
    - - Comments - {count} +
    +

    + Comments +

    + {count}
    -
    -
      +
      +
        {LOOP}
      • -
        -
        - +
        +
        + User Avatar
        -
        -
        -
        - By: {authorName} on {DTC date}{created}{/DTC} -
        +
        +
        + + By: {authorName} on {DTC date}{created}{/DTC} +
        {content} @@ -28,12 +29,8 @@ {/LOOP} {ALT}
      • -
        -
        -
        -

        Be the first to comment.

        -
        -
        +
        +

        Be the first to comment.

      • {/ALT} diff --git a/app/plugins/feedback/controllers/admin/feedback.php b/app/plugins/contact/controllers/admin/contact.php similarity index 63% rename from app/plugins/feedback/controllers/admin/feedback.php rename to app/plugins/contact/controllers/admin/contact.php index 582f537..1a1aa4a 100644 --- a/app/plugins/feedback/controllers/admin/feedback.php +++ b/app/plugins/contact/controllers/admin/contact.php @@ -1,10 +1,10 @@ * @link https://TheTempusProject.com @@ -18,29 +18,29 @@ use TheTempusProject\Houdini\Classes\Views; use TheTempusProject\Houdini\Classes\Navigation; use TheTempusProject\Houdini\Classes\Components; use TheTempusProject\Classes\AdminController; -use TheTempusProject\Models\Feedback as FeedbackModel; +use TheTempusProject\Models\Contact as ContactModel; -class Feedback extends AdminController { - protected static $feedback; +class Contact extends AdminController { + protected static $contact; public function __construct() { parent::__construct(); - self::$title = 'Admin - Feedback'; - self::$feedback = new FeedbackModel; - $view = Navigation::activePageSelect( 'nav.admin', '/admin/feedback' ); + self::$title = 'Admin - Contact'; + self::$contact = new ContactModel; + $view = Navigation::activePageSelect( 'nav.admin', '/admin/contact' ); Components::set( 'ADMINNAV', $view ); } public function view( $id = null ) { - Views::view( 'feedback.admin.view', self::$feedback->findById( $id ) ); + Views::view( 'contact.admin.view', self::$contact->findById( $id ) ); } public function delete( $data = null ) { if ( Input::exists( 'submit' ) ) { $data = Input::post( 'F_' ); } - if ( self::$feedback->delete( (array) $data ) ) { - Issues::add( 'success', 'feedback deleted' ); + if ( self::$contact->delete( (array) $data ) ) { + Issues::add( 'success', 'contact deleted' ); } else { Issues::add( 'error', 'There was an error with your request.' ); } @@ -48,11 +48,11 @@ class Feedback extends AdminController { } public function clear( $data = null ) { - self::$feedback->clear(); + self::$contact->clear(); $this->index(); } public function index( $data = null ) { - Views::view( 'feedback.admin.list', self::$feedback->listPaginated() ); + Views::view( 'contact.admin.list', self::$contact->listPaginated() ); } } diff --git a/app/plugins/feedback/controllers/feedback.php b/app/plugins/contact/controllers/contact.php similarity index 58% rename from app/plugins/feedback/controllers/feedback.php rename to app/plugins/contact/controllers/contact.php index 72a816f..a849547 100644 --- a/app/plugins/feedback/controllers/feedback.php +++ b/app/plugins/contact/controllers/contact.php @@ -1,10 +1,10 @@ * @link https://TheTempusProject.com @@ -20,25 +20,25 @@ use TheTempusProject\Bedrock\Functions\Check; use TheTempusProject\Bedrock\Functions\Input; use TheTempusProject\Bedrock\Functions\Session; use TheTempusProject\Hermes\Functions\Redirect; -use TheTempusProject\Models\Feedback as FeedbackModel; +use TheTempusProject\Models\Contact as ContactModel; -class Feedback extends Controller { - protected static $feedback; +class Contact extends Controller { + protected static $contact; public function index() { - self::$feedback = new FeedbackModel; - self::$title = 'Feedback - {SITENAME}'; - self::$pageDescription = 'At {SITENAME}, we value our users\' input. You can provide any feedback or suggestions using this form.'; + self::$contact = new ContactModel; + self::$title = 'Contact - {SITENAME}'; + self::$pageDescription = 'At {SITENAME}, we value our users\' input. You can provide any contact or suggestions using this form.'; if ( !Input::exists() ) { - return Views::view( 'feedback.create' ); + return Views::view( 'contact.create' ); } - if ( !Forms::check( 'feedback' ) ) { + if ( !Forms::check( 'contact' ) ) { Issues::add( 'error', [ 'There was an error with your form, please check your submission and try again.' => Check::userErrors() ] ); - return Views::view( 'feedback.create' ); + return Views::view( 'contact.create' ); } - $result = self::$feedback->create( Input::post( 'name' ), Input::post( 'feedbackEmail' ), Input::post( 'entry' ) ); + $result = self::$contact->create( Input::post( 'name' ), Input::post( 'contactEmail' ), Input::post( 'entry' ) ); if ( $result ) { - Session::flash( 'success', 'Thank you! Your feedback has been received.' ); + Session::flash( 'success', 'Thank you! Your contact has been received.' ); Redirect::to( 'home/index' ); } else { Issues::add( 'error', [ 'There was an error with your form, please check your submission and try again.' => Check::userErrors() ] ); diff --git a/app/plugins/feedback/forms.php b/app/plugins/contact/forms.php similarity index 69% rename from app/plugins/feedback/forms.php rename to app/plugins/contact/forms.php index 36bd805..f2265cb 100644 --- a/app/plugins/feedback/forms.php +++ b/app/plugins/contact/forms.php @@ -1,35 +1,35 @@ * @link https://TheTempusProject.com * @license https://opensource.org/licenses/MIT [MIT LICENSE] */ -namespace TheTempusProject\Plugins\Feedback; +namespace TheTempusProject\Plugins\Contact; use TheTempusProject\Bedrock\Functions\Input; use TheTempusProject\Bedrock\Functions\Check; use TheTempusProject\Classes\Forms; -class FeedbackForms extends Forms { +class ContactForms extends Forms { /** * Adds these functions to the form list. */ public function __construct() { - self::addHandler( 'feedback', __CLASS__, 'feedback' ); + self::addHandler( 'contact', __CLASS__, 'contact' ); } /** - * Validates the feedback form. + * Validates the contact form. * * @return {bool} */ - public static function feedback() { + public static function contact() { if ( !Input::exists( 'name' ) ) { Check::addUserError( 'You must provide a name.' ); return false; @@ -38,12 +38,12 @@ class FeedbackForms extends Forms { Check::addUserError( 'Invalid name.' ); return false; } - if ( !empty( Input::post( 'feedbackEmail' ) ) && !Check::email( Input::post( 'feedbackEmail' ) ) ) { + if ( !empty( Input::post( 'contactEmail' ) ) && !Check::email( Input::post( 'contactEmail' ) ) ) { Check::addUserError( 'Invalid Email.' ); return false; } if ( Input::post( 'entry' ) == '' ) { - Check::addUserError( 'Feedback cannot be empty.' ); + Check::addUserError( 'Contact cannot be empty.' ); return false; } if ( !Check::token() ) { @@ -53,4 +53,4 @@ class FeedbackForms extends Forms { } } -new FeedbackForms; +new ContactForms; diff --git a/app/plugins/feedback/models/feedback.php b/app/plugins/contact/models/contact.php similarity index 80% rename from app/plugins/feedback/models/feedback.php rename to app/plugins/contact/models/contact.php index b010ea2..8730883 100644 --- a/app/plugins/feedback/models/feedback.php +++ b/app/plugins/contact/models/contact.php @@ -1,12 +1,12 @@ * @link https://TheTempusProject.com @@ -17,9 +17,9 @@ namespace TheTempusProject\Models; use TheTempusProject\Bedrock\Functions\Check; use TheTempusProject\Canary\Bin\Canary as Debug; use TheTempusProject\Classes\DatabaseModel; -use TheTempusProject\Plugins\Feedback as Plugin; +use TheTempusProject\Plugins\Contact as Plugin; -class Feedback extends DatabaseModel { +class Contact extends DatabaseModel { public $tableName = 'feedback'; public $databaseMatrix = [ [ 'name', 'varchar', '128' ], @@ -39,7 +39,7 @@ class Feedback extends DatabaseModel { } /** - * Saves a feedback form to the db. + * Saves a contact form to the db. * * @param string $name -the name on the form * @param string $email -the email provided @@ -48,7 +48,7 @@ class Feedback extends DatabaseModel { */ public function create( $name, $email, $feedback ) { if ( !$this->plugin->checkEnabled() ) { - Debug::info( 'Feedback is disabled in the config.' ); + Debug::info( 'Contact is disabled in the config.' ); return false; } $fields = [ @@ -59,14 +59,14 @@ class Feedback extends DatabaseModel { 'ip' => $_SERVER['REMOTE_ADDR'], ]; if ( !self::$db->insert( $this->tableName, $fields ) ) { - Debug::info( 'Feedback::create - failed to insert to db' ); + Debug::info( 'Contact::create - failed to insert to db' ); return false; } return self::$db->lastId(); } /** - * Function to clear feedback from the DB. + * Function to clear contact from the DB. * * @todo is there a way i could check for success here I'm pretty sure this is just a bad idea? * @return bool @@ -76,8 +76,8 @@ class Feedback extends DatabaseModel { self::$log = new Log; } self::$db->delete( $this->tableName, ['ID', '>=', '0'] ); - self::$log->admin( 'Cleared Feedback' ); - Debug::info( 'Feedback Cleared' ); + self::$log->admin( 'Contacts Cleared' ); + Debug::info( 'Contacts Cleared' ); return true; } } diff --git a/app/plugins/feedback/plugin.php b/app/plugins/contact/plugin.php similarity index 65% rename from app/plugins/feedback/plugin.php rename to app/plugins/contact/plugin.php index bde7ba4..21883a0 100644 --- a/app/plugins/feedback/plugin.php +++ b/app/plugins/contact/plugin.php @@ -1,10 +1,10 @@ * @link https://TheTempusProject.com @@ -14,18 +14,18 @@ namespace TheTempusProject\Plugins; use TheTempusProject\Classes\Plugin; -class Feedback extends Plugin { - public $pluginName = 'TP Feedback'; +class Contact extends Plugin { + public $pluginName = 'TP Contact'; public $pluginAuthor = 'JoeyK'; public $pluginWebsite = 'https://TheTempusProject.com'; public $modelVersion = '1.0'; public $pluginVersion = '3.0'; - public $pluginDescription = 'A simple plugin which adds a form and management for user submitted feedback.'; - public $configName = 'feedback'; + public $pluginDescription = 'A simple plugin which adds a form and management for user submitted contact forms.'; + public $configName = 'contact'; public $configMatrix = [ 'enabled' => [ 'type' => 'radio', - 'pretty' => 'Enable User Feedback.', + 'pretty' => 'Enable User Contact.', 'default' => true, ], 'sendEmail' => [ @@ -36,25 +36,25 @@ class Feedback extends Plugin { 'emailTemplate' => [ 'type' => 'text', 'pretty' => 'Email Template', - 'default' => 'feedbackEmail', + 'default' => 'contactEmail', ], ]; public $permissionMatrix = [ - 'feedback' => [ - 'pretty' => 'Can Submit Feedback', - 'default' => false, + 'contact' => [ + 'pretty' => 'Can Submit Contact', + 'default' => true, ], ]; public $contact_footer_links = [ [ - 'text' => 'Feedback', - 'url' => '{ROOT_URL}feedback', + 'text' => 'Contact', + 'url' => '{ROOT_URL}contact', ], ]; public $admin_links = [ [ - 'text' => ' Feedback', - 'url' => '{ROOT_URL}admin/feedback', + 'text' => ' Contact', + 'url' => '{ROOT_URL}admin/contact', ], ]; } diff --git a/app/plugins/feedback/views/admin/list.html b/app/plugins/contact/views/admin/list.html similarity index 66% rename from app/plugins/feedback/views/admin/list.html rename to app/plugins/contact/views/admin/list.html index 0a60223..01eea1e 100644 --- a/app/plugins/feedback/views/admin/list.html +++ b/app/plugins/contact/views/admin/list.html @@ -1,6 +1,6 @@ -Feedback +Contact Forms {PAGINATION} -
        + @@ -20,8 +20,8 @@ - - + + @@ -39,4 +39,4 @@
        -clear all \ No newline at end of file +clear all \ No newline at end of file diff --git a/app/plugins/feedback/views/admin/view.html b/app/plugins/contact/views/admin/view.html similarity index 88% rename from app/plugins/feedback/views/admin/view.html rename to app/plugins/contact/views/admin/view.html index 31173a6..ecd441d 100644 --- a/app/plugins/feedback/views/admin/view.html +++ b/app/plugins/contact/views/admin/view.html @@ -1,9 +1,9 @@
        -
        -
        -

        Feedback

        +
        +
        +

        Contact

        @@ -43,7 +43,7 @@
        - + {/LOOP} diff --git a/app/views/admin/groups/list.html b/app/views/admin/groups/list.html index ba8df0a..3a79bc7 100644 --- a/app/views/admin/groups/list.html +++ b/app/views/admin/groups/list.html @@ -18,7 +18,7 @@ - + - + - + - +
        {ID} {DTC}{time}{/DTC} {feedback}
        {username}
        {name} {userCount} diff --git a/app/views/admin/groups/list_members.html b/app/views/admin/groups/list_members.html index 472ee7f..59623e8 100644 --- a/app/views/admin/groups/list_members.html +++ b/app/views/admin/groups/list_members.html @@ -20,7 +20,7 @@ {ID} {username} {DTC date}{registered}{/DTC} diff --git a/app/views/admin/groups/view.html b/app/views/admin/groups/view.html index 572a224..86490f8 100644 --- a/app/views/admin/groups/view.html +++ b/app/views/admin/groups/view.html @@ -1,8 +1,8 @@
        -
        -
        +
        +

        {name}

        diff --git a/app/views/admin/modules/models/view.html b/app/views/admin/modules/models/view.html index 6ba687b..c5de60b 100644 --- a/app/views/admin/modules/models/view.html +++ b/app/views/admin/modules/models/view.html @@ -1,8 +1,8 @@
        -
        -
        +
        +

        Model Info

        diff --git a/app/views/admin/modules/plugins/view.html b/app/views/admin/modules/plugins/view.html index 109dedb..5b8f8f1 100644 --- a/app/views/admin/modules/plugins/view.html +++ b/app/views/admin/modules/plugins/view.html @@ -1,8 +1,8 @@
        -
        -
        +
        +

        Plugin Info

        diff --git a/app/views/admin/routes/list.html b/app/views/admin/routes/list.html index cd64e8f..2005a7e 100644 --- a/app/views/admin/routes/list.html +++ b/app/views/admin/routes/list.html @@ -24,7 +24,7 @@
        {redirect_type} {original_url} {forwarded_url} diff --git a/app/views/admin/routes/view.html b/app/views/admin/routes/view.html index 3abbc83..bc0d039 100644 --- a/app/views/admin/routes/view.html +++ b/app/views/admin/routes/view.html @@ -1,8 +1,8 @@
        -
        -
        +
        +

        {nickname}

        diff --git a/app/views/admin/tokens/view.html b/app/views/admin/tokens/view.html index 1653976..72cc885 100644 --- a/app/views/admin/tokens/view.html +++ b/app/views/admin/tokens/view.html @@ -1,8 +1,8 @@
        -
        -
        +
        +

        {name}

        diff --git a/app/views/admin/users/list.html b/app/views/admin/users/list.html index 4328830..28b5b35 100644 --- a/app/views/admin/users/list.html +++ b/app/views/admin/users/list.html @@ -20,7 +20,7 @@
        {ID} {username} {DTC date}{registered}{/DTC} diff --git a/app/views/admin/users/view.html b/app/views/admin/users/view.html index facedc2..5c0cd8a 100644 --- a/app/views/admin/users/view.html +++ b/app/views/admin/users/view.html @@ -1,8 +1,8 @@
        -
        -
        +
        +

        {username}

        @@ -54,7 +54,7 @@ {ADMIN} - + diff --git a/app/views/faq.html b/app/views/faq.html index 65c623a..42c18f0 100644 --- a/app/views/faq.html +++ b/app/views/faq.html @@ -1,6 +1,7 @@ -
        +

        Frequently Asked Questions

        +
        diff --git a/app/views/login.html b/app/views/login.html index 609b04f..ea01670 100644 --- a/app/views/login.html +++ b/app/views/login.html @@ -1,44 +1,56 @@ - - Please sign in +
        +
        +
        +
        + - - -
        -
        - -
        -
        - - - - - - -

        Don't have an account? You can register here.

        -

        If you need assistance with your username or password, please Click here.

        +
        \ No newline at end of file diff --git a/app/views/nav/statusLoggedIn.html b/app/views/nav/statusLoggedIn.html index c88fe05..f70ed40 100644 --- a/app/views/nav/statusLoggedIn.html +++ b/app/views/nav/statusLoggedIn.html @@ -7,7 +7,7 @@ data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> - {USERNAME} + {USERNAME}