JSFiddle - React, Tailwind, and code Playground
by tea4two
HTML
<!-- 解答篇 -->
<h1>ログインフォーム</h1>
<p>ログインIDとパスワードを入力してください</p>
<form action="cgi/login.cgi" method="post">
ログインID
<br>
<input type="text" maxlength="10" size="20">
<br>パスワード
<br>
<input type="password" maxlength="8" size="15">
<br>
<input type="submit" value="ログインする">
<input type="reset" value="クリア">
</form>