mirror of
https://codeberg.org/keyoxide/keyoxide-web.git
synced 2025-01-25 05:55:45 -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;
|
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) {
|
@media (max-width: 680px) {
|
||||||
#profileHeader {
|
#profileHeader {
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
|
|
@ -2,6 +2,9 @@ extends template.base.pug
|
||||||
|
|
||||||
block content
|
block content
|
||||||
.content
|
.content
|
||||||
|
noscript
|
||||||
|
p Keyoxide requires JavaScript to function.
|
||||||
|
|
||||||
h1 Encrypt
|
h1 Encrypt
|
||||||
form#form-encrypt(method='post')
|
form#form-encrypt(method='post')
|
||||||
h3 Recipient
|
h3 Recipient
|
||||||
|
|
|
@ -8,6 +8,8 @@ head
|
||||||
|
|
||||||
main.container.container--profile
|
main.container.container--profile
|
||||||
.content
|
.content
|
||||||
|
noscript
|
||||||
|
p Keyoxide requires JavaScript to function.
|
||||||
span#profileUid(style='display: none;') #{uid}
|
span#profileUid(style='display: none;') #{uid}
|
||||||
span#profileServer(style='display: none;') #{server}
|
span#profileServer(style='display: none;') #{server}
|
||||||
span#profileMode(style='display: none;') #{mode}
|
span#profileMode(style='display: none;') #{mode}
|
||||||
|
|
|
@ -2,6 +2,9 @@ extends template.base.pug
|
||||||
|
|
||||||
block content
|
block content
|
||||||
.content
|
.content
|
||||||
|
noscript
|
||||||
|
p Keyoxide requires JavaScript to function.
|
||||||
|
|
||||||
h1 Proofs
|
h1 Proofs
|
||||||
form#form-proofs(method='post')
|
form#form-proofs(method='post')
|
||||||
h3 Public key
|
h3 Public key
|
||||||
|
|
|
@ -2,6 +2,9 @@ extends template.base.pug
|
||||||
|
|
||||||
block content
|
block content
|
||||||
.content
|
.content
|
||||||
|
noscript
|
||||||
|
p Keyoxide requires JavaScript to function.
|
||||||
|
|
||||||
h1 Verify
|
h1 Verify
|
||||||
form#form-verify(method='post')
|
form#form-verify(method='post')
|
||||||
h3 Signer
|
h3 Signer
|
||||||
|
|
Loading…
Reference in a new issue