diff --git a/basicswap/templates/changepassword.html b/basicswap/templates/changepassword.html
index 466f74f..07a677f 100644
--- a/basicswap/templates/changepassword.html
+++ b/basicswap/templates/changepassword.html
@@ -44,6 +44,48 @@
{% include 'inc_messages.html' %}
+
+ {% set disabled_coins = [] %}
+ {% for c in chains_formatted %}
+ {% if c.connection_type == "none" %}
+ {% set _ = disabled_coins.append(c.display_name) %}
+ {% endif %}
+ {% endfor %}
+
+ {% if disabled_coins|length > 0 %}
+
+
+
+
+
+
+
+
WARNING:
+
Password Change Blocked - Disabled Coins Detected
+
+ Changing your password now will break your installation!
+
+
+ The following coins are currently disabled and will NOT have their passwords updated:
+
+ {% for coin_name in disabled_coins %}
+
• {{ coin_name }}
+ {% endfor %}
+
+ What this means: When you re-enable these coins later, they will still have the old password while your other coins have the new password, causing authentication failures.
+
+
+ Solution: Please enable all coins before changing your password, or wait until all coins are enabled.
+