mcknightg / flutterbum

Flutterbum Project Manager
http://www.flutterbum.com
MIT License
67 stars 23 forks source link

User Name - Video 2 question #18

Open GilbertMizrahi opened 9 years ago

GilbertMizrahi commented 9 years ago

On Video 2, when a user registers it shows 3 fields: email, password and name. Following along my app only has email and password. Thus, the name doesn't show up on my nav bar.

How I can edit the fields on the registration form?

On the meteor documentation I see that to include the login/register stuff I need to include {{> loginButtons}}. However in the _header template I don't see that. Thus, how is the boilerplate handling it?

mcknightg commented 9 years ago

You can use the accounts/config.js file in the both folder to add fields.

https://gist.github.com/mcknightg/ca474cccadb0a699fd2f

On Thu, Feb 26, 2015 at 6:05 PM, GilbertMizrahi notifications@github.com wrote:

On Video 2, when a user registers it shows 3 fields: email, password and name. Following along my app only has email and password. Thus, the name doesn't show up on my nav bar.

How I can edit the fields on the registration form?

On the meteor documentation I see that to include the login/register stuff I need to include {{> loginButtons}}. However in the _header template I don't see that. Thus, how is the boilerplate handling it?

— Reply to this email directly or view it on GitHub https://github.com/mcknightg/flutterbum/issues/18.

GilbertMizrahi commented 9 years ago

Thanks.

GilbertMizrahi commented 9 years ago

That allows me to add more fields and that is very useful. But, what is the name of the user accounts template, so I can wirite a helper to show the user name in the header?

Also, how I include the "forgot password" part when a user that is trying to login doesn't remember her password?