Remove www folder
This commit is contained in:
@@ -1 +0,0 @@
|
||||
<div ng-show="show"><h2>Enter your order for {{ run.name }}</h2><p>{{ invitee.name }}, enter your order here.</p><p>You are all going to {{ run.restaurant }}. <span ng-click="showMenuUrl">Here is the <a href="{{ run.menuUrl }}">menu.</a></span></p><form role="form"><div class="form-group"><label for="order">Your order</label><textarea id="order" ng-model="invitee.order" class="form-control"></textarea></div><button ng-click="submit(invitee)" class="btn btn-primary">Submit Order</button></form></div>
|
||||
@@ -1 +0,0 @@
|
||||
<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>
|
||||
@@ -1 +0,0 @@
|
||||
<div class="row"><div class="col-xs-12 col-sm-12 col-md-12 col-lg-12"><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></div></div>
|
||||
@@ -1 +0,0 @@
|
||||
<div ng-show="show"><h2>{{ run.name }}</h2><p>{{ run.creatorName }}, here's your lunch run! Wait here to see real-time updates of your invitees' orders.</p><div ng-repeat="i in run.invitees"><p>{{ i.name }}, {{ i.email }}</p><p>{{ i.order }}</p><a href="#/run/{{ run.id }}/order/{{ i.name }}">Fill in this order</a></div></div>
|
||||
@@ -1 +0,0 @@
|
||||
<div class="container">{{ helloMsg }}</div>
|
||||
Reference in New Issue
Block a user