<div class="form-panel">
<div class="form-panel-header">
<h2>Form Panel Title (Label on Top) </h2>
<p>Form fields are grouped and wrapped inside <code>form-panel</code> div.</p>
</div>
<div class="form-panel-body">
<div class="row">
<div class="col-md-6">
<div class="form-group">
<label class="col-form-label">Full Name</label>
<input class="form-control" type="text" spellcheck="false" data-ms-editor="true">
<small class="form-text text-muted">Please enter your full name</small> </div>
<div class="form-group">
<label class="col-form-label">Email Address</label>
<input class="form-control" id="email" name="email" type="email" aria-describedby="email" autocomplete="email" spellcheck="false">
<small class="form-text text-muted">We will never share your email with anyone else</small> </div>
<div class="form-group">
<label class="col-form-label">Postal code</label>
<div class="input-group">
<input type="text" class="form-control form-control-xsm" placeholder="" aria-label="" aria-describedby="" spellcheck="false" data-ms-editor="true">
<div class="input-group-append">
<button class="btn btn-primary" type="button">Find</button>
</div>
</div>
<small class="form-text text-muted">This is example helper text!</small> </div>
<div class="form-group">
<label class="col-form-label">Block / house no.</label>
<input type="text" value="53A" class="form-control form-control-sm" spellcheck="false" data-ms-editor="true">
</div>
<div class="form-group">
<label class="col-form-label">Street Name</label>
<input type="text" value="Tampines Street 12" class="form-control" spellcheck="false" data-ms-editor="true">
</div>
<div class="multi-field">
<div class="form-group">
<label class="col-form-label">Floor no.<br>
(optional)</label>
<input type="text" value="12" class="form-control form-control-sm" spellcheck="false" data-ms-editor="true">
</div>
<div class="form-group">
<label class="col-form-label">Unit no.<br>
(optional)</label>
<input type="text" value="12" class="form-control form-control-sm" spellcheck="false" data-ms-editor="true">
</div>
</div>
<div class="form-group">
<label class="col-form-label">Subscription</label>
<div class="input-group">
<div class="input-group-prepend"> <span class="input-group-text" id="inputGroup-sizing-sm"><i class="far fa-dollar-sign"></i></span> </div>
<input type="text" class="form-control form-control-sm" spellcheck="false" data-ms-editor="true">
</div>
</div>
<div class="form-group">
<label class="col-form-label">Communication</label>
<div>
<div class="form-check">
<label class="form-check-label">
<input class="form-check-input" type="checkbox" name="Communication">
Email <span class="checkbox-overlay "></span> </label>
</div>
<div class="form-check">
<label class="form-check-label">
<input class="form-check-input" type="checkbox" name="Communication">
SMS <span class="checkbox-overlay "></span> </label>
</div>
<div class="form-check">
<label class="form-check-label">
<input class="form-check-input" type="checkbox" name="Communication">
Phone <span class="checkbox-overlay "></span> </label>
</div>
</div>
</div>
<div class="form-group required field-has-error">
<label class="col-form-label">Communication</label>
<div>
<div class="form-check">
<label class="form-check-label" for="RadioDefault211">
<input class="form-check-input" type="radio" name="RadioDefault111" id="RadioDefault211">
Radio 1 (Default) <span class="radio-overlay "></span> </label>
</div>
<div class="form-check">
<label class="form-check-label" for="RadioDefault212">
<input class="form-check-input" type="radio" name="RadioDefault111" id="RadioDefault212">
Radio 2 (Default) <span class="radio-overlay "></span> </label>
</div>
<div class="form-check">
<label class="form-check-label" for="RadioDefault213">
<input class="form-check-input" type="radio" name="RadioDefault111" id="RadioDefault213">
Radio 3 (Default) <span class="radio-overlay "></span> </label>
</div>
</div>
<span class="message text-danger"><i class="fas fa-minus-circle mr-1"></i>This is an error message. </span> </div>
<div class="form-group required">
<label class="col-form-label">Input with success message</label>
<div class="field-icon field-success">
<input class="form-control" type="text" spellcheck="false" data-ms-editor="true">
</div>
<span class="message text-success"><i class="fas fa-check-circle mr-1"></i>This is a success message.</span> <small class="form-text text-muted">Example help text which will remains unchanged</small> </div>
<div class="form-group required">
<label class="col-form-label">Input with warning message</label>
<div class="field-icon field-warning">
<input class="form-control" type="text" spellcheck="false" data-ms-editor="true">
</div>
<span class="message text-warning"><i class="fas fa-exclamation-triangle mr-1"></i>This is a warning message.</span> <small class="form-text text-muted">Example help text which will remains unchanged</small> </div>
<div class="form-group required field-has-error">
<label class="col-form-label">Input with error</label>
<div class="field-icon field-danger">
<input class="form-control" type="text" spellcheck="false" data-ms-editor="true">
</div>
<span class="message text-danger"><i class="fas fa-minus-circle mr-1"></i>This is an error message. </span> <small class="form-text text-muted">Example help text which will remains unchanged</small> </div>
</div>
</div>
</div>
<div class="form-panel-footer text-center">
<button type="button" class="btn btn-primary my-1">Action</button>
<button type="button" class="btn btn-dark my-1">Action</button>
</div>
</div>