Skip to content
This repository has been archived by the owner on Nov 3, 2023. It is now read-only.

Latest commit

 

History

History
49 lines (30 loc) · 1.21 KB

create_user.md

File metadata and controls

49 lines (30 loc) · 1.21 KB

Create a user

1. Site administrator sends an invitation:

  • ssh to server
cd /var/www/<domain_name>
php artisan invitation:send <email_of_the_receiver>
# Successfully send one invitation.

Screenshot

2. User opens the e-mail, clicks to the register link

As we are testing this in a local environment, using mailtrap makes it easier.

  • Check your mailtrap account.
  • "Click here to activate" link

Screenshot

3. User fills the registration form

Fill the registration form, and submit.

Screenshot

4. Server recieves the form

Server recieves the form data, and sends a verification e-mail the user's e-mail.

Screenshot

5. User verifies e-mail

  • Check mailtrap
  • Open e-mail, click to verify the e-mail

Screenshot

6. Redirect user

  • Server accepts verification, redirects user to profile page.
  • At this stage user is registered to the blog.
    • Site administrator must add the user to roles to make it functional.

Screenshot