diff --git a/web/templates/login.html b/web/templates/login.html index f432dd0096..e67fdaa5af 100644 --- a/web/templates/login.html +++ b/web/templates/login.html @@ -2,7 +2,7 @@

Log in to {{ issuer }}

-
+ + + {{ template "footer.html" . }} diff --git a/web/templates/password.html b/web/templates/password.html index 3e1c2ed2da..64f612613f 100644 --- a/web/templates/password.html +++ b/web/templates/password.html @@ -38,6 +38,11 @@

Log in to Your Account

var el = document.querySelector('#submit-login'); el.setAttribute('disabled', 'disabled'); }; + + if (window.location.hash) { + var form = document.querySelector('form'); + form.action = (form.action || '') + window.location.hash; + } {{ template "footer.html" . }}