Skip to content
This repository was archived by the owner on Feb 5, 2020. It is now read-only.
This repository was archived by the owner on Feb 5, 2020. It is now read-only.

Error in forms example on landing page https://www.siimple.xyz/ #7

@tarator

Description

@tarator

You have an error in your code example for form elements on your landing page:

Wrong (there is a closing </div> too much add the end and indentation is wrong):

<div class="siimple-field">
    <div class="siimple-field-label">Your email</div>
        <input type="email" class="siimple-input siimple-input--fluid" value="[email protected]">
        <div class="siimple-field-helper">Provide a valid email</div>
    </div>
    <div class="siimple-field">
        <div class="siimple-field-label">Your message</div>
        <textarea class="siimple-textarea siimple-textarea--fluid" rows="4">Siimple is awesome!</textarea>
    </div>
    <div class="siimple-field">
        <span class="siimple-btn siimple-btn--success">Submit</span>
        <span class="siimple-btn siimple-btn--error">Cancel</span>
    </div>
</div>

correct would be:

<div class="siimple-field">
    <div class="siimple-field-label">Your email</div>
    <input type="email" class="siimple-input siimple-input--fluid" value="[email protected]">
    <div class="siimple-field-helper">Provide a valid email</div>
</div>
<div class="siimple-field">
    <div class="siimple-field-label">Your message</div>
    <textarea class="siimple-textarea siimple-textarea--fluid" rows="4">Siimple is awesome!</textarea>
</div>
<div class="siimple-field">
    <span class="siimple-btn siimple-btn--success">Submit</span>
    <span class="siimple-btn siimple-btn--error">Cancel</span>
</div>

Metadata

Metadata

Assignees

Labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions