Updated event form to allow for time input

This commit is contained in:
Luke Vella 2015-02-01 23:35:15 +01:00
parent 47b60296eb
commit 6d81b21ed1
32 changed files with 456 additions and 88 deletions

View file

@ -10,8 +10,20 @@ angular.module('rallly', ['ui.router','ngResource','btford.modal','ngTagsInput',
})
.state('newevent',{
url : '/new',
templateUrl : 'templates/newevent.html',
controller : 'NewEventCtrl'
templateUrl : 'templates/newEvent/layout.html',
controller : 'NewEventCtrl',
})
.state('newevent.general', {
templateUrl : 'templates/newEvent/general.html'
})
.state('newevent.datetime', {
templateUrl : 'templates/newEvent/datetime.html'
})
.state('newevent.invite', {
templateUrl : 'templates/newEvent/invite.html'
})
.state('newevent.success', {
templateUrl : 'templates/newEvent/success.html'
})
.state('about', {
url : '/about',