"create_order"
Bootstrap 3.3.0 Snippet by aaronsuns

<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <!------ Include the above in your HEAD tag ----------> <form class="form-horizontal"> <fieldset> <!-- Form Name --> <legend>Create Order</legend> <!-- Text input--> <div class="form-group"> <label class="col-md-4 control-label" for="order_id">Order id</label> <div class="col-md-4"> <input id="order_id" name="order_id" type="text" placeholder="Order id" class="form-control input-md" required=""> <span class="help-block">Can be any text string or number. </span> </div> </div> <!-- Text input--> <div class="form-group"> <label class="col-md-4 control-label" for="Count">Count</label> <div class="col-md-4"> <input id="Count" name="Count" type="text" placeholder="0" class="form-control input-md" required=""> <span class="help-block">The count of C4 nodes which need to be produced as part of this order</span> </div> </div> <!-- Select Basic --> <div class="form-group"> <label class="col-md-4 control-label" for="Configuration">Configuration</label> <div class="col-md-4"> <select id="Configuration" name="Configuration" class="form-control"> <option value="1">Option one</option> <option value="2">Option two</option> </select> </div> </div> <!-- Text input--> <div class="form-group"> <label class="col-md-4 control-label" for="aliasid_pattern">Alias Id Pattern</label> <div class="col-md-4"> <input id="aliasid_pattern" name="aliasid_pattern" type="text" placeholder="prefix****12" class="form-control input-md"> <span class="help-block">A string containing the pattern for a prefix for an Alias Id, such as prefix****23, so that * are replaced with 0s and starting with id 23.</span> </div> </div> <!-- Multiple Radios (inline) --> <div class="form-group"> <label class="col-md-4 control-label" for="down_eth_mac">Require downlink ETH MAC</label> <div class="col-md-4"> <label class="radio-inline" for="down_eth_mac-0"> <input type="radio" name="down_eth_mac" id="down_eth_mac-0" value="0" checked="checked"> No </label> <label class="radio-inline" for="down_eth_mac-1"> <input type="radio" name="down_eth_mac" id="down_eth_mac-1" value="1"> Yes </label> </div> </div> <!-- Multiple Radios (inline) --> <div class="form-group"> <label class="col-md-4 control-label" for="up_eth_mac">Require uplink ETH MAC</label> <div class="col-md-4"> <label class="radio-inline" for="up_eth_mac-0"> <input type="radio" name="up_eth_mac" id="up_eth_mac-0" value="0" checked="checked"> No </label> <label class="radio-inline" for="up_eth_mac-1"> <input type="radio" name="up_eth_mac" id="up_eth_mac-1" value="1"> Yes </label> </div> </div> <!-- Button --> <div class="form-group"> <label class="col-md-4 control-label" for="Submit"></label> <div class="col-md-4"> <button id="Submit" name="Submit" type="submit" class="btn btn-primary">Create</button> </div> </div> </fieldset> </form>

Related: See More


Questions / Comments: