Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 606 Bytes

README.md

File metadata and controls

22 lines (15 loc) · 606 Bytes

User_login_registration

Java tutorial, learning how to develop a complete backend app user login and registration + email verification with expire function using Spring Boot.

Example of a request using Postman

postmanexample

CURL

curl --location --request POST 'localhost:8080/api/v1/registration' \
--header 'Content-Type: application/json' \
--data-raw '{
    "firstName": "Daniel",
    "lastName": "Matt",
    "email": "example@example.com",
    "password": "password"
}'