diff --git a/news/static/news/css/app.css b/news/static/news/css/app.css
index a1f7275..dfbf0c6 100644
--- a/news/static/news/css/app.css
+++ b/news/static/news/css/app.css
@@ -12,6 +12,14 @@
--header-bg-color: #FFD540;
}
+.container {
+ background-color: #1a1a1a;
+}
+
+/* .imgcontainer img {
+ max-width: 100%;
+} */
+
iframe {
border: 0;
}
@@ -25,7 +33,7 @@ a:hover {
body {
color: #eee;
- background-color: #222;
+ background-color: #111;
font-size:18px;
margin: 0px;
padding: 0px;
@@ -42,7 +50,7 @@ header {
}
@media print, screen and (min-width: 40em) {
header {
- width: 420px;
+ width: 400px;
}
}
@@ -189,7 +197,7 @@ a h1 {
}
@media print, screen and (min-width: 40em) {
.imgcontainer {
- width: 600px;
+ /* width: 600px; */
/* border-bottom: 10px solid #111; */
/* border-top: 20px solid #111; */
}
diff --git a/news/templates/base.html b/news/templates/base.html
index 3dfb37a..9151539 100644
--- a/news/templates/base.html
+++ b/news/templates/base.html
@@ -35,20 +35,18 @@
-->
-
-
+
-
+
+
+
-
+
diff --git a/news/templates/news/user/change-password.html b/news/templates/news/user/change_password.html
similarity index 100%
rename from news/templates/news/user/change-password.html
rename to news/templates/news/user/change_password.html
diff --git a/news/templates/news/user/password_reset_confirm.html b/news/templates/news/user/password_reset_confirm.html
index 1ff69c9..ab2f690 100644
--- a/news/templates/news/user/password_reset_confirm.html
+++ b/news/templates/news/user/password_reset_confirm.html
@@ -21,7 +21,7 @@
{{ form.new_password2 }}
-
+
diff --git a/news/urls.py b/news/urls.py
index 1cd3c2a..62f7dfd 100644
--- a/news/urls.py
+++ b/news/urls.py
@@ -36,5 +36,5 @@ urlpatterns = [
path('reset///', auth_views.PasswordResetConfirmView.as_view(
template_name='news/user/password_reset_confirm.html',
success_url='password-change/done'), name='password_reset_confirm'),
- path('reset/Mg/set-password/password-change/done', auth_views.PasswordResetCompleteView.as_view(template_name='news/user/password_reset_complete.html'), name='password_change_done'),
+ path('reset//set-password/password-change/done', auth_views.PasswordResetCompleteView.as_view(template_name='news/user/password_reset_complete.html'), name='password_change_done'),
]