JSFiddle - React, Tailwind, and code Playground

by aman1981

HTML

<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.3.0/angular.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.0/css/bootstrap.min.css">
<script src="http://angular-ui.github.io/bootstrap/ui-bootstrap-tpls-0.12.1.js"></script>
<script src="https://code.jquery.com/jquery-1.11.2.min.js"></script>
<div class="modal-header">
    <h3 class="modal-title">Create Set</h3>
</div>
<div class="modal-body">
    <form role="form" name="setNameForm" novalidate class="form-horizontal">
        <div class="form-group">
            <label class="col-sm-4 control-label">Choose a Line of Business</label>
            <div class="col-sm-6">
                <ui-select ng-model="setLob.lobValues" required>
                    <ui-select-match placeholder="Select lob...">
                        <span>{{$select.selected.text || $select.search}}</span>
                    </ui-select-match>
                    <ui-select-choices repeat="lob in (lobs | filter: { text: $select.search }) track by lob.id">
                        <span>{{lob.text}}</span>
                    </ui-select-choices>
                </ui-select>
            </div>
        </div>
        <div class="form-group">
            <label class="col-sm-4 control-label">Enter Set Name</label>
            <div class="col-sm-8" ng-class="{ 'has-error': setNameForm.setName.$invalid }">
                <input type="text" name="setName" ng-model="setName" required class="form-control input-medium" />
                <p ng-show="setNameForm.setName.$invalid" class="help-block">Set Name is required.</p>
            </div>
        </div>
        <div class="form-group">
            <input type="checkbox" class="form-check-input" style="margin-left:20px" disabled checked="checked">
            <span>Create newer versions of "{{setName}}" from scratch.</span>
        </div>
            <div class="form-group" style="display:none">
                <div...