JSFiddle - React, Tailwind, and code Playground

by ysuper

HTML

<html>
    <body>
        <form method="POST" action="" align="center">
            
            
            <div>
            <label for="login">Login</label>
            <input id="login" name="login" required type="text" value="a">
            
            <ul>
                
                <li>Duplicate username</li>
                
            </ul>
            
            </div>
            
            <div>
            <label for="password">Password</label>
            <input id="password" name="password" required type="password" value="">
            
            </div>
            
            <div>
            <label for="name">Name</label>
            <input id="name" name="name" required type="text" value="a">
            
            </div>
            
            <div>
            <label for="email">Email</label>
            <input id="email" name="email" required type="text" value="a">
            
            </div>
            
            <input type="submit" />
        </form>
    </body>
</html>