mirror of
https://github.com/openMF/community-app.git
synced 2026-02-06 18:06:46 +00:00
16 lines
589 B
HTML
16 lines
589 B
HTML
<form class="form-horizontal well" ng-controller="AddCodeController" ng-submit="submit()">
|
|
<fieldset>
|
|
<legend>Add Code</legend>
|
|
<div>
|
|
<label class="control-label" for="codename">Code Name</label>
|
|
<div class="controls">
|
|
<input type="text" class="input-xlarge" id="codename" ng-model="formData.name">
|
|
</div>
|
|
</div>
|
|
<div class="form-actions">
|
|
<a href="#/codes" class="btn btn-primary">Cancel</a>
|
|
<button type="submit" class="btn btn-primary">Save</button>
|
|
</div>
|
|
|
|
</fieldset>
|
|
</form> |