We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement a login, & logout functionality while following best-practices and document it.
UserFieldset
RegistrationService
createUser(array $data)
updateUserById($userId, $data)
login($email, $password, $rememberMe = false)
logout()
AuthenticationService
UserService
getUserById($id)
getUserByEmailAddress($email)
The text was updated successfully, but these errors were encountered:
Introduced user entity, data fixture and RegistrationServiceFactory #2 …
4c93e1d
…and #3
No branches or pull requests
Implement a login, & logout functionality while following best-practices and document it.
Forms, Fieldsets
UserFieldset
and implement InputFilterProviderInterface inside.Create a simple login form.Demonstrate captcha usage on login form.Service Layer
RegistrationService
with following public interfaces:createUser(array $data)
updateUserById($userId, $data)
login($email, $password, $rememberMe = false)
logout()
Create anAuthenticationService
class, properly utilize zend-authentication library.Authentication service should support different auth adapters by configuration.UserService
withgetUserById($id)
andgetUserByEmailAddress($email)
public interfaces.Other
The text was updated successfully, but these errors were encountered: