Display an error message if JavaScript is disabled

This commit is contained in:
Rodolphe Bréard 2023-08-25 10:29:43 +02:00
parent a7c0548b7e
commit caa2c9f559
2 changed files with 4 additions and 0 deletions

View file

@ -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)

View file

@ -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>