This commit is contained in:
JOLIMAITRE Matthieu 2024-05-24 13:04:36 +02:00
parent 2737aadc7f
commit 8b6a86f17a
8 changed files with 95 additions and 10 deletions

View file

@ -3,7 +3,10 @@
import { jsx } from "https://deno.land/x/hono@v4.3.10/middleware.ts"
export default function Login() {
return (<div>
</div>)
}
return (
<form action="/api/login" method="post">
<input type="text" name="login"/>
<input type="password" name="password"/>
</form>
)
}