Sign up with email
See original GitHub issueAs a user I want to sign up into the app using my email address. Name, Email, Password and a checkbox to accept the terms and conditions.
Once I have entered my data, I want to click the Sign Up
button to create my account. After the server successfully create my account, I should be redirected to the main page (TBD, maybe profile page? Or search?).
When implementing this, make sure to create a components/Textfield
component, we want this component to be reusable in other parts of the application.
const classes = {
root: styles.someCustomClassForTheRootElement,
input: styles.customCssForTheInput,
label: 'something-here',
};
<Textfield value={value} onChange={onChange} classes={classes} label="Email" />
Same for the Checkbox, we want reusable components.
The scope of this class is only to define the UI in the clientside. For the actual login in the backend take a look at:
https://github.com/Coding-Coach/coding-coach-api/issues/9 https://github.com/Coding-Coach/coding-coach-api/issues/12
Issue Analytics
- State:
- Created 5 years ago
- Comments:27 (6 by maintainers)
Top GitHub Comments
@gibsonhan Let’s work together if it’s fine with you?
@emmawedekind @crysfel
Each of these bits all fulfill the completion of Signup. It will allow us to create stories for each of the bits of work. At the moment this all looks haphazard. There are multiple issues open for the same thing, and it’s incoherent and so it’s very difficult for:
I apologise if this is overly critical, but we can do a lot better organising the work.