12 lines
306 B
TypeScript
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>
|
|
)
|
|
}
|