mirror of
https://github.com/openMF/community-app.git
synced 2026-02-06 17:36:48 +00:00
23 lines
963 B
HTML
23 lines
963 B
HTML
<div class="paddedbottom10">
|
|
<ul class="breadcrumb">
|
|
<li><a href="#/system">{{'link.admin.system' | translate}}</a> <span class="divider">/</span></li>
|
|
<li><a href="#/codes">{{'label.managecodes' | translate}}</a> <span class="divider">/</span></li>
|
|
<li class="active">{{'label.addcode' | translate}}</li>
|
|
</ul>
|
|
</div>
|
|
<form class="form-horizontal well" ng-controller="AddCodeController" ng-submit="submit()">
|
|
<fieldset>
|
|
<legend>{{'label.addcode' | translate}}</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> |