diff --git a/static/css/style.css b/static/css/style.css index e31ba34..7e014cc 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -294,3 +294,9 @@ ol li { -moz-border-radius: 0.5em; -webkit-border-radius: 0.5em; } + +.error_box { + text-align: left; + margin-left: 2em; + margin-right: 2em; +} diff --git a/view/Error_page.py b/view/Error_page.py index 8072138..f50b3c8 100644 --- a/view/Error_page.py +++ b/view/Error_page.py @@ -13,7 +13,7 @@ class Error_page( Page ): H2( title ), P( u"Something went wrong! If you care, please", - A( "let us know about it.", href = "/about/contact" ), + A( "let us know about it.", href = "mailto:support@luminotes.com" ), u"Be sure to include the following information:", ), Ul( @@ -31,6 +31,6 @@ class Error_page( Page ): If Javascript isn't enabled in your browser, please enable it. """, ), - class_ = u"box", + class_ = u"error_box", ), ) diff --git a/view/Not_found_page.py b/view/Not_found_page.py index 64eb3a5..0b0f974 100644 --- a/view/Not_found_page.py +++ b/view/Not_found_page.py @@ -13,11 +13,11 @@ class Not_found_page( Page ): H2( title ), P( u"This is not the page you're looking for. If you care, please", - A( "let us know about it.", href = "/about/contact" ), + A( "let us know about it.", href = "mailto:support@luminotes.com" ), ), P( u"Thanks!", ), - class_ = u"box", + class_ = u"error_box", ), )