<form>
    <h3>Sign Up</h3>
    <label for="form-full-name">Full Name</label>
    <input id="form-full-name" type="text" placeholder="Full Name" />

    <label for="form-email">Email</label>
    <input id="form-email" type="email" placeholder="Email" />

    <label for="form-password">Create Password</label>
    <input id="form-password" type="password" placeholder="Password" />

    <div class="form-checkbox">
        <input type="checkbox" />
        <p>I agree to the terms and conditions.</p>
    </div>

    <div class="form-buttons">
        <button class="btn btn-primary">Sign Up</button>
        <button class="btn">Cancel</button>
    </div>
</form>