grunt-doctrine
Version:
Grunt plugin to convert doctrine xml annotations into backbone models and collections. Useful in conjunction with doctrine apigility. Includes option to scaffold an entire BBB application
99 lines (52 loc) • 2.24 kB
HTML
<h1>Address</h1>
<div class="form form-horizontal" role="form">
<div class="form-group">
<label for="workPhone">workPhone</label>
<input type="text" class="form-control" id="work_phone" name="work_phone" placeholder="workPhone">
</div>
<div class="form-group">
<label for="homePhone">homePhone</label>
<input type="text" class="form-control" id="home_phone" name="home_phone" placeholder="homePhone">
</div>
<div class="form-group">
<label for="mobile">mobile</label>
<input type="text" class="form-control" id="mobile" name="mobile" placeholder="mobile">
</div>
<div class="form-group">
<label for="fax">fax</label>
<input type="text" class="form-control" id="fax" name="fax" placeholder="fax">
</div>
<div class="form-group">
<label for="notes">notes</label>
<input type="text" class="form-control" id="notes" name="notes" placeholder="notes">
</div>
<div class="form-group">
<label for="Street1">Street1</label>
<input type="text" class="form-control" id="street1" name="street1" placeholder="Street1">
</div>
<div class="form-group">
<label for="Street2">Street2</label>
<input type="text" class="form-control" id="street2" name="street2" placeholder="Street2">
</div>
<div class="form-group">
<label for="City">City</label>
<input type="text" class="form-control" id="city" name="city" placeholder="City">
</div>
<div class="form-group">
<label for="State">State</label>
<input type="text" class="form-control" id="state" name="state" placeholder="State">
</div>
<div class="form-group">
<label for="PostalCode">PostalCode</label>
<input type="text" class="form-control" id="pocode" name="pocode" placeholder="PostalCode">
</div>
<div class="form-group">
<label for="client">client</label>
<select class="form-control selectbox-client" id="client" name="client" ></select>
</div>
<div class="form-group">
<label for="country">country</label>
<select class="form-control selectbox-country" id="country" name="country" ></select>
</div>
<button type="button" class="btn btn-default submitForm">Submit</button>
</div>