mirror of
https://codeberg.org/keyoxide/keyoxide-web.git
synced 2025-01-10 15:19:28 -07:00
Add noscript block
This commit is contained in:
parent
7c6e67297d
commit
a2afafa088
5 changed files with 23 additions and 0 deletions
|
@ -361,6 +361,18 @@ a.proofQR:hover {
|
|||
margin: 32px auto;
|
||||
}
|
||||
|
||||
noscript {
|
||||
display: block;
|
||||
margin-bottom: 2rem;
|
||||
padding: 8px;
|
||||
background-color: #f0e68c;
|
||||
text-align: center;
|
||||
}
|
||||
noscript p {
|
||||
margin: 0;
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
@media (max-width: 680px) {
|
||||
#profileHeader {
|
||||
flex-direction: column;
|
||||
|
|
|
@ -2,6 +2,9 @@ extends template.base.pug
|
|||
|
||||
block content
|
||||
.content
|
||||
noscript
|
||||
p Keyoxide requires JavaScript to function.
|
||||
|
||||
h1 Encrypt
|
||||
form#form-encrypt(method='post')
|
||||
h3 Recipient
|
||||
|
|
|
@ -8,6 +8,8 @@ head
|
|||
|
||||
main.container.container--profile
|
||||
.content
|
||||
noscript
|
||||
p Keyoxide requires JavaScript to function.
|
||||
span#profileUid(style='display: none;') #{uid}
|
||||
span#profileServer(style='display: none;') #{server}
|
||||
span#profileMode(style='display: none;') #{mode}
|
||||
|
|
|
@ -2,6 +2,9 @@ extends template.base.pug
|
|||
|
||||
block content
|
||||
.content
|
||||
noscript
|
||||
p Keyoxide requires JavaScript to function.
|
||||
|
||||
h1 Proofs
|
||||
form#form-proofs(method='post')
|
||||
h3 Public key
|
||||
|
|
|
@ -2,6 +2,9 @@ extends template.base.pug
|
|||
|
||||
block content
|
||||
.content
|
||||
noscript
|
||||
p Keyoxide requires JavaScript to function.
|
||||
|
||||
h1 Verify
|
||||
form#form-verify(method='post')
|
||||
h3 Signer
|
||||
|
|
Loading…
Reference in a new issue