benjaminapetersen / auto-app

An auto app built in collaboration with jonathanyiv
0 stars 0 forks source link

Login flow #14

Open benjaminapetersen opened 9 years ago

benjaminapetersen commented 9 years ago

I'd suggest:

.when('/vehicles', {
    templateUrl: 'scripts/vehicles/views/list.html',
    controller: 'auto.vehicles.vehicle.list'
});
var user = {
  name: {
    first: '',
    last: ''
  },
  email: '',
  password: ''
}
benjaminapetersen commented 9 years ago

I started working on this after I merged all the other branches into develop. See the graph if you are interested in current progress.

benjaminapetersen commented 9 years ago

I'm tackling initial login flow, sign-up and auth in the feature/auth branch. feel free to check it out. A good way to see whats updated is to see the graph. This is the graph of the second code push (there have only been 2).

@Asmodaios