Merge pull request #810 from MuxZeroNet/patch-10

Fix typo in login.html
This commit is contained in:
ZeroNet 2017-02-05 13:36:32 +01:00 committed by GitHub
commit 22eff13fe3

View file

@ -74,7 +74,7 @@ label { vertical-align: -1px; color: #9EA5B3; transition: all 0.3s; }
<script> <script>
function onFormKeypress(e) { function onFormKeypress(event) {
if (event.keyCode == 13) { if (event.keyCode == 13) {
submit() submit()
return false return false
@ -113,4 +113,4 @@ if (result == "bad_password")
</script> </script>
</body> </body>
</html> </html>