seed-form-group
Version:
Form group component pack for Seed
28 lines (27 loc) • 739 B
HTML
<html>
<head>
<link rel="stylesheet" href="dist/seed-form-group.css">
</head>
<body>
<div class="c-form-group">
<label>Name</label>
<input type="text" class="c-input" required>
</div>
<div class="c-form-group">
<label>Email</label>
<input type="email" class="c-input">
</div>
<div class="c-form-group is-error">
<label>Error</label>
<input type="text" class="c-input" required>
</div>
<div class="c-form-group is-success">
<label>Success</label>
<input type="text" class="c-input" required>
</div>
<div class="c-form-group is-warning">
<label>Warning</label>
<input type="text" class="c-input" required>
</div>
</body>
</html>