working on login form

Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
2024-07-17 00:46:44 +02:00
parent add4209a1f
commit 67606a80f4
5 changed files with 28 additions and 7 deletions

View File

@@ -6,7 +6,7 @@
</head>
<body>
<h1>Login</h1>
<form id="form">
<form id="login">
<fieldset>
<legend>User credentials</legend>
<label>
@@ -17,8 +17,9 @@
Password
<input type="password" name="pass" />
</label>
<button type="button" onClick="submitForm('form')">Login</button>
<button type="button" onClick="tryLogin()">Login</button>
</fieldset>
</form>
<div id="error"></div>
</body>
</html>