https://github.com/shubhampatel81/login_register_spring_security
https://github.com/shubhampatel81/login_register_spring_security
authentication spring-boot spring-security sql thymeleaf
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/shubhampatel81/login_register_spring_security
- Owner: ShubhamPatel81
- Created: 2024-08-29T12:00:26.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-27T05:56:56.000Z (over 1 year ago)
- Last Synced: 2025-01-01T06:12:48.411Z (over 1 year ago)
- Topics: authentication, spring-boot, spring-security, sql, thymeleaf
- Language: Java
- Homepage: https://login-register-spring-security.vercel.app
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# login_register_spring_security
This project implements a basic login and registration system using Spring Boot and Spring Security with an SQL database for user management. The application provides secure user authentication and authorization mechanisms.
User Registration: Allows new users to create an account by providing their details.
User Login: Authenticates users based on their credentials (username and password).
Password Encryption: Passwords are securely stored in the database using hashing algorithms.
Role-Based Access Control: Provides different access levels based on user roles.
### Technologies Used
Spring Boot: Framework for creating stand-alone, production-grade Spring-based applications.
Spring Security: Provides security features for authentication and authorization.
SQL Database (e.g., MySQL): Used to store user information securely.
Thymeleaf (or any other templating engine): For server-side rendering of login and registration pages.
JPA/Hibernate: For database interaction.