Advertisement
Guest User

Untitled

a guest
May 26th, 2015
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. <label class="form-label">Form Label</label>
  2. <input type="text" class="form-input" name="name" placeholder="Input placeholder text" />
  3. <span class="form-help-text">This is help text for a form</span>
  4.  
  5. <!-- Disabled -->
  6. <label class="form-label">Disabled Input</label>
  7. <input type="text" class="form-input" disabled name="name" placeholder="Disabled" />
  8.  
  9. <!-- Error -->
  10. <label for="error-input" class="form-label">Error Label</label>
  11. <input type="text" class="form-input has-error" name="error-input" placeholder="This is not correct">
  12. <span class="form-help-text has-error">This is not correct.</span>
  13.  
  14. <!-- Success -->
  15. <label for="success-input" class="form-label">Success Label</label>
  16. <input type="text" class="form-input has-success" name="success-input" placeholder="This is correct">
  17. <span class="form-help-text has-success">This is correct.</span>
  18.  
  19. <!-- Warning -->
  20. <label for="warning-input" class="form-label">Warning Label</label>
  21. <input type="text" class="form-input has-warning" name="warning-input" placeholder="This is a warning">
  22. <span class="form-help-text has-warning">This is a warning.</span>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement