diff options
author | Joel Wetzell <[email protected]> | 2023-04-23 07:13:58 -0500 |
---|---|---|
committer | Joel Wetzell <[email protected]> | 2023-04-23 07:13:58 -0500 |
commit | 9db34c651ceb9bd2574ae578a4b615bd4338c0e9 (patch) | |
tree | 50031ed3a57d818795157aa56525383afae0593e /File-decryption/webapp/index.html | |
parent | c806db767069720b54364428e108b4121edbd934 (diff) | |
download | OpenCortex-9db34c651ceb9bd2574ae578a4b615bd4338c0e9.tar.gz OpenCortex-9db34c651ceb9bd2574ae578a4b615bd4338c0e9.zip |
add protobuf decoding
Diffstat (limited to 'File-decryption/webapp/index.html')
-rw-r--r-- | File-decryption/webapp/index.html | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/File-decryption/webapp/index.html b/File-decryption/webapp/index.html index d82291b..529fb0b 100644 --- a/File-decryption/webapp/index.html +++ b/File-decryption/webapp/index.html @@ -14,15 +14,16 @@ <link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap" rel="stylesheet"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css" integrity="sha512-SzlrxWUlpfuzQ+pcUCosxcglQRNAq/DZjVsC0lE40xsADsfeQoEypE+enwcOiGjk/bSuGGKHEyjSoQ1zVisanQ==" crossorigin="anonymous" referrerpolicy="no-referrer" /> - <link rel="stylesheet" href="./style.css"/> - <script src="/sha1.js"></script> - <script src="/main.js"></script> + <link rel="stylesheet" href="assets/css/style.css"/> + <script src="assets/js/protobuf.min.js"></script> + <script src="assets/js/sha1.js"></script> + <script src="assets/js/main.js"></script> </head> <body> <header> - <img src="./images/OpenCortex-logo.png" alt="OpenCortex-logo" class="header-logo"> + <img src="images/OpenCortex-logo.png" alt="OpenCortex-logo" class="header-logo"> <h1 class="header-title">OpenCortex file decryption</h1> </header> @@ -41,6 +42,15 @@ </label> <input class="file-input" id="file-input" type="file"> </div> + <div class="file-decode"> + <h3 class="file-decode-label">Decoded File:</h3> + <select id="protobuf-list"> + <option value="">None</option> + </select> + <div> + <textarea id="decrypt-output"></textarea> + </div> + </div> </div> </body> |