Logo
Stockholm-icons / General / Search Created with Sketch.
Stockholm-icons / Media / Equalizer Created with Sketch.
Stockholm-icons / Layout / Layout-4-blocks Created with Sketch.
Stockholm-icons / Communication / Chat6 Created with Sketch.
Logo

Default Form Validation States

Success! You've done it.
Example help text that remains unchanged.
Shucks, check the formatting of that and try again.
Example help text that remains unchanged.

							<form class="form">
							<div class="card-body">
								<div class="form-group">
									<label class="form-control-label" >Input with success <span class="text-danger">*</span></label>
									<input type="text" class="form-control is-valid" />
									<div class="valid-feedback">Success! You've done it.</div>
									<span class="form-text text-muted">Example help text that remains unchanged.</span>
								</div>
								<div class="form-group">
									<label class="form-control-label" >Input with error <span class="text-danger">*</span></label>
									<input type="text" class="form-control is-invalid" />
									<div class="invalid-feedback">Shucks, check the formatting of that and try again.</div>
									<span class="form-text text-muted">Example help text that remains unchanged.</span>
								</div>
							</div>
							<div class="card-footer">
								<button type="submit" class="btn btn-success font-weight-bold mr-2">Submit</button>
								<button type="submit" class="btn btn-light-success font-weight-bold">Cancel</button>
							</div>
						</form>
						

Horizontal Form Validation States

Success! You've done it.
Example help text that remains unchanged.
Shucks, check the formatting of that and try again.
Example help text that remains unchanged.

						<form class="form">
						<div class="card-body">
							<div class="form-group row ">
								<label class="col-form-label col-lg-3" >Input with success <span class="text-danger">*</span></label>
								<div class="col-lg-9">
									<input type="text" class="form-control is-valid" />
									<div class="valid-feedback">Success! You've done it.</div>
									<span class="form-text text-muted">Example help text that remains unchanged.</span>
								</div>
							</div>
							<div class="form-group row ">
								<label class="col-form-label col-lg-3" >Input with error <span class="text-danger">*</span></label>
								<div class="col-lg-9">
									<input type="text" class="form-control is-invalid" />
									<div class="invalid-feedback">Shucks, check the formatting of that and try again.</div>
									<span class="form-text text-muted">Example help text that remains unchanged.</span>
								</div>
							</div>
						</div>
						<div class="card-footer">
							<div class="row">
								<div class="col-lg-9 ml-lg-auto">
									<button type="submit" class="btn btn-primary font-weight-bold mr-2">Submit</button>
									<button type="submit" class="btn btn-light-primary font-weight-bold">Cancel</button>
								</div>
							</div>
						</div>
					</form>
					

Input Group Validation States

Success! You've done it.
Example help text that remains unchanged.
USD
Shucks, check the formatting of that and try again.
Example help text that remains unchanged.

						<form class="form">
							<div class="card-body">
								<div class="form-group validated">
									<label class="form-control-label" >Left Addon</label>
									<div class="input-group">
										<div class="input-group-prepend"><span class="input-group-text" ><i class="la la-bar-chart "></i></span></div>
										<input type="text" class="form-control is-valid" placeholder="Email" />
									</div>

									<div class="valid-feedback">Success! You've done it.</div>
									<span class="form-text text-muted">Example help text that remains unchanged.</span>
								</div>
								<div class="form-group validated">
									<label class="form-control-label" >Right Addon</label>
									<div class="input-group">
										<input type="text" class="form-control is-invalid" value="4444a" placeholder="Email" />
										<div class="input-group-append"><span class="input-group-text" >USD</span></div>
									</div>

									<div class="invalid-feedback">Shucks, check the formatting of that and try again.</div>
									<span class="form-text text-muted">Example help text that remains unchanged.</span>
								</div>
							</div>
							<div class="card-footer">
								<button type="submit" class="btn btn-success font-weight-bold mr-2">Submit</button>
								<button type="submit" class="btn btn-light-success font-weight-bold">Cancel</button>
							</div>
						</form>
						

Checkbox & Radio Validation States

Success! You've done it.
Example help text that remains unchanged.
Success! You've done it.
Example help text that remains unchanged.
Success! You've done it.
Example help text that remains unchanged.
Success! You've done it.
Example help text that remains unchanged.

						<form class="form">
							<div class="card-body">
								<div class="form-group validated">
									<label class="form-control-label" >Checkboxes</label>
									<div class="checkbox-list">
										<label class="checkbox">
											<input type="checkbox"/>
											<span></span>
											Option 1
										</label>
										<label class="checkbox">
											<input type="checkbox"/>
											<span></span>
											Option 2
										</label>
										<label class="checkbox">
											<input type="checkbox"/>
											<span></span>
											Option 3
										</label>
									</div>
									<div class="valid-feedback">Success! You've done it.</div>
									<span class="form-text text-muted">Example help text that remains unchanged.</span>
								</div>
								<div class="form-group validated">
									<label class="form-control-label" >Inline Checkboxes</label>
									<div class="checkbox-inline">
										<label class="checkbox checkbox-outline">
											<input type="checkbox"/>
											<span></span>
											Option 1
										</label>
										<label class="checkbox checkbox-outline">
											<input type="checkbox"/>
											<span></span>
											Option 2
										</label>
										<label class="checkbox checkbox-outline">
											<input type="checkbox"/>
											<span></span>
											Option 3
										</label>
									</div>
									<div class="invalid-feedback">Success! You've done it.</div>
									<span class="form-text text-muted">Example help text that remains unchanged.</span>
								</div>
								<div class="form-group validated">
									<label class="form-control-label" >Radios</label>
									<div class="radio-list">
										<label class="radio radio-outline">
											<input type="radio"/>
											<span></span>
											Option 1
										</label>
										<label class="radio radio-outline">
											<input type="radio"/>
											<span></span>
											Option 2
										</label>
										<label class="radio radio-outline">
											<input type="radio"/>
											<span></span>
											Option 3
										</label>
									</div>
									<div class="valid-feedback">Success! You've done it.</div>
									<span class="form-text text-muted">Example help text that remains unchanged.</span>
								</div>
								<div class="form-group validated">
									<label class="form-control-label" >Inline Radios</label>
									<div class="radio-inline">
										<label class="radio">
											<input type="radio"/>
											<span></span>
											Option 1
										</label>
										<label class="radio">
											<input type="radio"/>
											<span></span>
											Option 2
										</label>
										<label class="radio">
											<input type="radio"/>
											<span></span>
											Option 3
										</label>
									</div>
									<div class="invalid-feedback">Success! You've done it.</div>
									<span class="form-text text-muted">Example help text that remains unchanged.</span>
								</div>
							</div>
							<div class="card-footer">
								<button type="submit" class="btn btn-success font-weight-bold mr-2">Submit</button>
								<button type="submit" class="btn btn-light-success font-weight-bold">Cancel</button>
							</div>
						</form>
						

Icon Input Validation States

Success! You've done it.
Example help text that remains unchanged.
Shucks, check the formatting of that and try again.
Example help text that remains unchanged.

						<form class="form">
							<div class="card-body">
								<div class="form-group validated">
									<label class="form-control-label" >Left Icon</label>
									<div class="input-group">
										<div class="input-group-prepend"><span class="input-group-text" ><i class="la la-map-marker "></i></span></div>
										<input type="text" class="form-control is-valid" placeholder="Email"/>
									</div>
									<div class="valid-feedback">Success! You've done it.</div>
									<span class="form-text text-muted">Example help text that remains unchanged.</span>
								</div>
								<div class="form-group validated">
									<label class="form-control-label" >Right Icon</label>
									<div class="input-group">
										<input type="text" class="form-control is-invalid" placeholder="Email"/>
										<div class="input-group-append"><span class="input-group-text" ><i class="la la-unlock-alt "></i></span></div>
									</div>
									<div class="invalid-feedback">Shucks, check the formatting of that and try again.</div>
									<span class="form-text text-muted">Example help text that remains unchanged.</span>
								</div>
							</div>
							<div class="card-footer">
								<button type="submit" class="btn btn-primary font-weight-bold mr-2">Submit</button>
								<button type="submit" class="btn btn-light-primary font-weight-bold">Cancel</button>
							</div>
						</form>
						

Quick Actions finance & reports

User Profile 15 messages

Recent Notifications
Stockholm-icons / Layout / Layout-polygon Created with Figma. Stockholm-icons / Files / File-done Created with Sketch.

Important Notice

Lorem Ipsum is simply dummy text of the printing and industry.

Stockholm-icons / Layout / Layout-polygon Created with Figma. Stockholm-icons / Design / Pen&ruller Created with Sketch.

System Update

There are many variations of passages of Lorem Ipsum available.

Stockholm-icons / Layout / Layout-polygon Created with Figma. Stockholm-icons / General / Thunder-move Created with Sketch.

Server Maintenance

Contrary to popular belief, Lorem Ipsum is not simply random text.

Stockholm-icons / Layout / Layout-polygon Created with Figma. Stockholm-icons / Home / Alarm-clock Created with Sketch.

DB Migration

If you are going to use a passage of Lorem Ipsum, you need.

System Messages
Stockholm-icons / Communication / Group-chat Created with Sketch.
09:30 AM

To start a blog, think of a topic about and first brainstorm ways to write details

Stockholm-icons / General / Attachment2 Created with Sketch.
2:45 PM

To start a blog, think of a topic about and first brainstorm ways to write details

Stockholm-icons / Home / Library Created with Sketch.
3:12 PM

To start a blog, think of a topic about and first brainstorm ways to write details

Stockholm-icons / Communication / Add-user Created with Sketch.
7:05 PM

To start a blog, think of a topic about and first brainstorm ways to write details

Privacy Settings:

After you log in, you will be asked for additional information to confirm your identity.

Security Settings:

After you log in, you will be asked for additional information to confirm your identity. For extra security, this requires you to confirm your email. Learn more.

Stockholm-icons / Navigation / Up-2 Created with Sketch.

Select A Demo

Demo 1
Demo 2
Demo 3
Demo 4
Demo 5
Demo 6
Demo 7
Demo 8
Demo 9