twifeur/pages/components/login.tsx
2024-05-24 13:04:36 +02:00

12 lines
306 B
TypeScript

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