{"repo": "dgtlmoon/changedetection.io", "pull_number": 91, "instance_id": "dgtlmoon__changedetection.io-91", "issue_numbers": [76], "base_commit": "c0b623391252152311ff44be5884bc5429068ec2", "patch": "diff --git a/backend/__init__.py b/backend/__init__.py\nindex 3c9b650e97f..b1653007026 100644\n--- a/backend/__init__.py\n+++ b/backend/__init__.py\n@@ -468,11 +468,12 @@ def settings_page():\n form.notification_body.data = datastore.data['settings']['application']['notification_body']\n \n # Password unset is a GET\n- if request.values.get('removepassword') == 'true':\n+ if request.values.get('removepassword') == 'yes':\n from pathlib import Path\n datastore.data['settings']['application']['password'] = False\n flash(\"Password protection removed.\", 'notice')\n flask_login.logout_user()\n+ return redirect(url_for('settings_page'))\n \n if request.method == 'POST' and form.validate():\n \n@@ -577,7 +578,7 @@ def diff_history_page(uuid):\n if uuid == 'first':\n uuid = list(datastore.data['watching'].keys()).pop()\n \n- extra_stylesheets = ['/static/styles/diff.css']\n+ extra_stylesheets = [url_for('static_content', group='styles', filename='diff.css')]\n try:\n watch = datastore.data['watching'][uuid]\n except KeyError:\n@@ -634,7 +635,7 @@ def preview_page(uuid):\n if uuid == 'first':\n uuid = list(datastore.data['watching'].keys()).pop()\n \n- extra_stylesheets = ['/static/styles/diff.css']\n+ extra_stylesheets = [url_for('static_content', group='styles', filename='diff.css')]\n \n try:\n watch = datastore.data['watching'][uuid]\ndiff --git a/backend/templates/base.html b/backend/templates/base.html\nindex cc53ac6971f..649b204e322 100644\n--- a/backend/templates/base.html\n+++ b/backend/templates/base.html\n@@ -5,8 +5,8 @@\n \n \n