Display an error message if JavaScript is disabled
This commit is contained in:
parent
a7c0548b7e
commit
caa2c9f559
2 changed files with 4 additions and 0 deletions
|
@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
### Added
|
||||
- The main view now includes a reset button
|
||||
- An error message is now displayed if JavaScript is disabled
|
||||
|
||||
### Changed
|
||||
- Secret keys are now restricted to 128 bits (16 bytes) or 256 bits (32 bytes)
|
||||
|
|
|
@ -9,5 +9,8 @@
|
|||
<body>
|
||||
<div id="app"></div>
|
||||
<script type="module" src="src/main.js"></script>
|
||||
<noscript>
|
||||
<p>This application's main purpose is to compute values on the client side, therefore JavaScript is required.</p>
|
||||
</noscript>
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Reference in a new issue