From 6133e9f53ecdcf61dc019f9c26a8e16af9f81055 Mon Sep 17 00:00:00 2001 From: s-katte Date: Thu, 1 Oct 2020 10:34:54 +0530 Subject: [PATCH 1/3] one password field changes --- templates/entrydir.html | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/templates/entrydir.html b/templates/entrydir.html index fe33a6f..2c6995c 100644 --- a/templates/entrydir.html +++ b/templates/entrydir.html @@ -17,7 +17,10 @@

-

+

+ + +

@@ -29,6 +32,20 @@
+ {% endblock %} {% block logdinas %}

Code - ENTRYDIR

{% endblock %} {% block versdata %} From 14b42012f01628edee6488dd9166b64a5e5a6121 Mon Sep 17 00:00:00 2001 From: s-katte Date: Thu, 1 Oct 2020 10:40:27 +0530 Subject: [PATCH 2/3] Revert "one password field changes" This reverts commit 6133e9f53ecdcf61dc019f9c26a8e16af9f81055. --- templates/entrydir.html | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/templates/entrydir.html b/templates/entrydir.html index 2c6995c..fe33a6f 100644 --- a/templates/entrydir.html +++ b/templates/entrydir.html @@ -17,10 +17,7 @@

-

- - -

+

@@ -32,20 +29,6 @@
- {% endblock %} {% block logdinas %}

Code - ENTRYDIR

{% endblock %} {% block versdata %} From 76bd47105b149e3dcab5062344218373b1d35369 Mon Sep 17 00:00:00 2001 From: s-katte Date: Thu, 1 Oct 2020 10:52:56 +0530 Subject: [PATCH 3/3] added password toggle element --- templates/entrydir.html | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/templates/entrydir.html b/templates/entrydir.html index fe33a6f..9b77daf 100644 --- a/templates/entrydir.html +++ b/templates/entrydir.html @@ -17,7 +17,11 @@

-

+

+ + + +

@@ -29,6 +33,17 @@
+function hide() { + document.getElementById("pwd").type = "password" + document.getElementById("eyeSlash").style.display = "none" + document.getElementById("eye").style.display = "block" + } + + function show() { + document.getElementById("pwd").type = "text" + document.getElementById("eyeSlash").style.display = "block" + document.getElementById("eye").style.display = "none" + } {% endblock %} {% block logdinas %}

Code - ENTRYDIR

{% endblock %} {% block versdata %}