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">
    <br>パスワード
    <br>
    <input type="password" maxlength="8">
    <br>
    <input type="submit" value="ログインする">
    <input type="reset" value="リセットする">
</form>