diff options
author | Runxi Yu <me@runxiyu.org> | 2025-03-23 14:02:37 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-03-23 14:02:37 +0800 |
commit | c9b9ca55d0d1403f4b331db6d148d26b0ed5c407 (patch) | |
tree | 16f61c2fbc380015b6fa1d76b55b7905c3ac6938 /tmpl.go | |
parent | More CSS updates (diff) | |
download | powxy-c9b9ca55d0d1403f4b331db6d148d26b0ed5c407.tar.gz powxy-c9b9ca55d0d1403f4b331db6d148d26b0ed5c407.tar.zst powxy-c9b9ca55d0d1403f4b331db6d148d26b0ed5c407.zip |
Disable the readonly input box
Diffstat (limited to '')
-rw-r--r-- | tmpl.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -185,7 +185,7 @@ for the JavaScript code in this page. <section> <p>Select a nonce no longer than 32 bytes, such that when it is appended to the decoded form of the challenge token, and the entire result is hashed with SHA-256, the first {{ .Global.NeedBits }} bits of the SHA-256 hash are all zeros. Within one octet, higher bits are considered to come before lower bits.</p> <label for="unsigned-token">Challenge token (read-only)</label> - <input id="unsigned-token" type="text" readonly tabindex="-1" value="{{ .UnsignedTokenBase64 }}" /> + <input id="unsigned-token" type="text" readonly disabled tabindex="-1" value="{{ .UnsignedTokenBase64 }}" /> </section> <section> |