Develop the Sign-in Feature
Learn how to make a form and an API call to sign in to the users.
We'll cover the following...
We'll cover the following...
The login feature will be similar to the sign-up feature. We’ll create a form and integrate the back-end. When we log in, we’ll get a token. We’ll save it in our local storage, which we’ll later use for authenticating all requests.
View
First, we’ll create a Signin.vue
file in the views
directory.
The template will consist of a ...