https://github.com/amigoscode/login-registration-backend
https://github.com/amigoscode/login-registration-backend
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/amigoscode/login-registration-backend
- Owner: amigoscode
- Created: 2021-01-15T23:55:18.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-10-17T12:58:20.000Z (about 2 years ago)
- Last Synced: 2025-03-28T07:03:55.877Z (10 months ago)
- Language: Java
- Homepage: https://www.amigoscode.com/courses
- Size: 62.5 KB
- Stars: 447
- Watchers: 5
- Forks: 380
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Login Registration Backend
Complete login registration backend system using Spring Boot.
[](https://www.youtube.com/watch?v=QwQuro7ekvc)
- [x] Spring Boot
- [x] Spring Security
- [x] Java Mail
- [x] Email verification with expiry
- [x] Spring Boot
## Diagram

## Email verification link with expiry

## Example requests
### Postman

### CURL
```
curl --location --request POST 'localhost:8080/api/v1/registration' \
--header 'Content-Type: application/json' \
--data-raw '{
"firstName": "Amigos",
"lastName": "Code",
"email": "hellow@amigoscode.com",
"password": "password"
}'
```