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
|
### Added
|
||||||
- The main view now includes a reset button
|
- The main view now includes a reset button
|
||||||
|
- An error message is now displayed if JavaScript is disabled
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- Secret keys are now restricted to 128 bits (16 bytes) or 256 bits (32 bytes)
|
- Secret keys are now restricted to 128 bits (16 bytes) or 256 bits (32 bytes)
|
||||||
|
|
|
@ -9,5 +9,8 @@
|
||||||
<body>
|
<body>
|
||||||
<div id="app"></div>
|
<div id="app"></div>
|
||||||
<script type="module" src="src/main.js"></script>
|
<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>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Reference in a new issue