Welcome to Saepisan we create digital products and services that help brands thrive in a connected world.

View portfolio

Form

Standard form

Input

<input type="text" class="form-control" id="exampleInputName" placeholder="Example form input">
Textarea

<textarea class="form-control" rows="3"<>/textarea>
Select

<select class="form-control">
	<option>Select option 1</option>
	<option>Select option 2</option>
	<option>Select option 3</option>
</select>
Checkbox
<div class="checkbox">
	<label>
		<input type="checkbox" value="">
		Option one is this and that—be sure to include why it's great
	</label>
</div>
Radio
<div class="radio">
	<label>
		<input type="radio" name="optionsRadios" id="optionsRadios1" value="option1" checked>
		Option one is this and that—be sure to include why it's great
	</label>
</div>

<div class="radio">
	<label>
		<input type="radio" name="optionsRadios" id="optionsRadios2" value="option2">
		Option two can be something else and selecting it will deselect option one
	</label>
</div>

Border form

Input

<input type="text" class="form-control form-border" id="exampleInputborder" placeholder="Example form input">
Textarea

<textarea class="form-control form-border" rows="3"<>/textarea>
Select

<select class="form-control form-border">
	<option>Select option 1</option>
	<option>Select option 2</option>
	<option>Select option 3</option>
</select>