From 840a7e28ad314dbc65513dcf2c97b65e01612c2f Mon Sep 17 00:00:00 2001 From: teddit Date: Sun, 28 Mar 2021 16:35:45 +0200 Subject: [PATCH] improve reddit error messages --- static/css/styles.css | 6 ++++++ views/index.pug | 12 +++++++----- 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/static/css/styles.css b/static/css/styles.css index 1165ecd..7a97558 100644 --- a/static/css/styles.css +++ b/static/css/styles.css @@ -300,6 +300,12 @@ input[type="submit"]:hover, cursor: pointer; text-decoration: none; } +.reddit-error { + text-align: center; + float: left; + width: 100%; + padding: 37px 0px 20px 0px; +} footer { padding: 10px; margin: 2.5% 0 0; diff --git a/views/index.pug b/views/index.pug index 01831b2..d68b7cb 100644 --- a/views/index.pug +++ b/views/index.pug @@ -6,11 +6,13 @@ html body(class=""+ (user_preferences.theme === 'auto' ? 'dark' : user_preferences.theme) + "") include includes/topbar.pug if json === null - h2 error - p #{JSON.stringify(http_status_code)} - p #{JSON.stringify(http_statustext)} - if http_status_code == "401" || http_status_code == "503" - p This error is probably because Reddit itself is down. + .reddit-error + h2 Error + p #{JSON.stringify(http_status_code)} + p #{JSON.stringify(http_statustext)} + if http_status_code == "401" || http_status_code == "503" + p This error is probably caused because Reddit itself is down or having server issues. + p Checking https://www.redditstatus.com might give some information. else - var subreddit = '' if(user_preferences.subbed_subreddits && Array.isArray(user_preferences.subbed_subreddits))