Files
lunchrun.me/www/templates/create-run.html
2014-03-22 20:21:21 -05:00

1 line
1.4 KiB
HTML

<div ng-controller="CreateRunCtrl" class="create-run-form"><h2>Create a lunch run</h2><form name="form" novalidate="novalidate" role="form"><div class="form-group"><label for="name">Name your run</label><input id="name" type="text" ng-model="run.name" required="required" class="form-control"/></div><div class="form-group"><label for="creatorName">Your name</label><input id="creatorName" type="text" ng-model="run.creatorName" required="required" class="form-control"/></div><div class="form-group"><label for="creatorEmail">Your email</label><input id="creatorEmail" type="email" ng-model="run.creatorEmail" required="required" class="form-control"/></div><div class="form-group"><label>Invitees</label><span ng-repeat="i in run.invitees"><div class="form-group"><label>Name</label><input ng-model="i.name" required="required" class="form-control"/></div><div class="form-group"><label>Email</label><input ng-model="i.email" required="required" class="form-control"/></div></span><button ng-click="addInvitee()" class="btn btn-default">Add</button></div><div class="form-group"><label for="restaurant">Restaurant</label><input id="restaurant" type="text" ng-model="run.restaurant" class="form-control"/></div><div class="form-group"><label for="menuUrl">Menu URL</label><input id="menuUrl" type="url" ng-model="run.menuUrl" class="form-control"/></div><button ng-click="create(run)" ng-disabled="form.$invalid" class="btn btn-primary">Create</button></form></div>