Signup Form Example Source

        
<!-- Look how nice and clean this html is! -->
<div id='signup-form'>

    <h1>Generic Signup Form</h1>

    <label for='username'>Username</label>
    <input id="username" type='text' placeholder='Username'></input>

    <label for='email'>Email</label>
    <input id="email" type='text' placeholder='Email'></input>

    <label for='password'>Password</label>
    <input id="password" type='password' placeholder='Password'></input>

    <label for='password-confirm'>Confirm Password</label>
    <input id="password-confirm" type='password' placeholder='Confirm Password'></input>

    <button id='signup-button'>Sign Up</button>

</div>

        
    
        
    

Signup Form Example