codefordenver / hawthorn-client

Hawthorn is based on the concept of affinity groups, a group of individuals who come together around a shared experience, interest or common goal. With Hawthorn affinity groups, you are free to start or join conversations and share useful resources with people in your community.
http://hawth.org
Apache License 2.0
2 stars 1 forks source link

Complete login & registration #51

Closed trex closed 4 years ago

trex commented 4 years ago

This is the frontend updates for user registration, login, and logout.

trex commented 4 years ago

I am trying to correct some linting issues on <label />s unsuccessfully. I see the following error when running the linter: "A form label must be associated with a control", you can see this on the <label />s for src/components/Register.js.

@gallickc any idea why the <label />s are not seen as being related to the <input />s?

gallickc commented 4 years ago

@noahjb might be able to provide more help than I can. The linting commit was made from my computer, but he was the brains behind it. Noah - any idea what's goin on?

noahjb commented 4 years ago

I am trying to correct some linting issues on <label />s unsuccessfully. I see the following error when running the linter: "A form label must be associated with a control", you can see this on the <label />s for src/components/Register.js.

@gallickc any idea why the <label />s are not seen as being related to the <input />s?

@trex - from this page, it looks like the <input> needs to be nested inside the <label> </label> tags.