generator-steroids
Version:
A Yeoman generator for Steroids
26 lines (17 loc) • 716 B
HTML
<div ng-controller="NewCtrl">
<div class="spinner" ng-show="loading"></div>
<div class="content-padded">
<h1>Add a new <%= resourceName %></h1>
<form class="simple-form">
<label>Name:</label><br>
<input type="text" ng-model="<%= resourceName %>.name" class="topcoat-text-input three-quarters"/>
<br><br>
<label>Description:</label><br>
<input type="text" ng-model="<%= resourceName %>.description" class="topcoat-text-input three-quarters"/>
<br><br>
<a class="topcoat-button--cta full center" hm-tap="create(<%= resourceName %>)">Add</a>
<br><br>
<a class="topcoat-button full center" hm-tap="close()">Cancel</a>
</form>
</div>
</div>