diff --git a/basicswap/templates/changepassword.html b/basicswap/templates/changepassword.html index c572534..786e2c3 100644 --- a/basicswap/templates/changepassword.html +++ b/basicswap/templates/changepassword.html @@ -1,27 +1,115 @@ - - - - - - {{ title }} - - -

Change password

-{% for m in messages %} -

{{ m }}

-{% endfor %} -{% for m in err_messages %} -

Error: {{ m }}

-{% endfor %} -
- - - - - -
Old Password
New Password
Confirm Password
- -
-

home

+{% include 'header.html' %} +
+
+
+
+ +
+
+
+
+
+
+ + + +
+
+

Change Password

+

Update your BasicSwap / Wallets password.

+
+
+
+
+
+ {% include 'inc_messages.html' %} +
+
+
+
+
+
+
+ + + + + + + + + + + + + + + + + + + + +
Password
Old Password + +
New Password + +
Confirm Password + +
+
+
+
+
+
+
+ +
+
+
+
+ + +
+
+
+
+
+ {% include 'footer.html' %} - + \ No newline at end of file diff --git a/basicswap/templates/header.html b/basicswap/templates/header.html index a352618..ab20a02 100644 --- a/basicswap/templates/header.html +++ b/basicswap/templates/header.html @@ -196,7 +196,7 @@
-
+
@@ -290,9 +290,10 @@ {% endif %} + {% if debug_mode == true %} - --> {% endif %} {% if use_tor_proxy == true %} diff --git a/basicswap/templates/offers.html b/basicswap/templates/offers.html index b44294a..1e7c0e5 100644 --- a/basicswap/templates/offers.html +++ b/basicswap/templates/offers.html @@ -313,7 +313,7 @@
-
diff --git a/basicswap/templates/unlock.html b/basicswap/templates/unlock.html index 791db4d..a396d73 100644 --- a/basicswap/templates/unlock.html +++ b/basicswap/templates/unlock.html @@ -1,23 +1,113 @@ - - - - {{ title }} - - -

Unlock wallet

-{% for m in messages %} -

{{ m }}

-{% endfor %} -{% for m in err_messages %} -

Error: {{ m }}

-{% endfor %} -
-
- - -
-

home

- - + + + {% if refresh %} + + {% endif %} + + + + + + + {{ title }} + + +
+
+
+
+ + BasicSwap + +

Unlock your wallets

+ {% for m in messages %} + + {% endfor %} + {% for m in err_messages %} + + {% endfor %} +
+
+
+ +
+
+ + +
+ +
+
+ +

+ Need help? + Help / Tutorials +

+ +
+
+
+
+ + + \ No newline at end of file diff --git a/basicswap/templates/wallets.html b/basicswap/templates/wallets.html index 6aecb91..82c3ad5 100644 --- a/basicswap/templates/wallets.html +++ b/basicswap/templates/wallets.html @@ -36,14 +36,21 @@

Check your coin balances and manage your wallets. {% if refresh %} (Page Refresh: {{ refresh }} seconds) {% endif %}

- + + + + + + Change Password + - Refresh + Refresh
+
diff --git a/basicswap/ui/page_encryption.py b/basicswap/ui/page_encryption.py index 74432e1..1cf051d 100644 --- a/basicswap/ui/page_encryption.py +++ b/basicswap/ui/page_encryption.py @@ -37,6 +37,7 @@ def page_changepassword(self, url_split, post_string): return self.render_template(template, { 'messages': messages, 'err_messages': err_messages, + 'summary': swap_client.getSummary(), })