trycrypt/static/index.pug
2023-02-24 01:41:06 +01:00

19 lines
743 B
Plaintext

extends layout.pug
block body
h1 TryCrypt
br
div#general
p Please enter your KEY and IV
input#keyField(type="password" placeholder="Passkey" style="width:30%;")
input#ivField(type="password" placeholder="IV" style="width:16%;")
button#keyRefresh 👁
button#keySave Save
button#generateRandom Generate
br
br
div#boxes
textarea#userTB(placeholder="Your encrypted or plain text" style="width: 48.5%; margin-left: 1%; height: 50%; float:left;")
textarea#systemTB(placeholder="The decrypted/encrypted text" readonly="readonly" style="width: 48.5%; margin-left: 1%; height: 50%; float:left")
button#btnEncrypt Encrypt
button#btnDecrypt Decrypt