Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/salma-mamdoh/advanced-laravel-user-registration-platform
Our Project for Web Based Course taken during fall 2024 semester
https://github.com/salma-mamdoh/advanced-laravel-user-registration-platform
ajax api blade-template bootstrap controller css database email-automation html javascript laravel multi-language mvc mysql password-encryption php testing
Last synced: 7 days ago
JSON representation
Our Project for Web Based Course taken during fall 2024 semester
- Host: GitHub
- URL: https://github.com/salma-mamdoh/advanced-laravel-user-registration-platform
- Owner: Salma-Mamdoh
- Created: 2024-05-05T10:45:05.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-11-06T22:58:43.000Z (9 days ago)
- Last Synced: 2024-11-06T23:33:11.647Z (9 days ago)
- Topics: ajax, api, blade-template, bootstrap, controller, css, database, email-automation, html, javascript, laravel, multi-language, mvc, mysql, password-encryption, php, testing
- Language: PHP
- Homepage:
- Size: 24.2 MB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Laravel Registration Webpage
https://github.com/user-attachments/assets/16393438-5723-4a87-b8f3-1c7ed6ba854e
## Overview
The Laravel Registration Webpage project is a comprehensive application designed to manage user registrations effectively. It incorporates key features to enhance user experience and ensure data integrity.
## Features
1. **User Registration Form**:
Collects personal details including full name, username, birthdate, phone number, address, password, confirm password, user image, and email.2. **Client-Side Validations**:
Ensures all fields are mandatory and validates email, birthdate, full name, password, and confirm password using JavaScript.3. **Server-Side Validations**:
Checks for duplicate usernames in the database and handles image upload and validation.4. **User Image Upload**:
Allows users to upload and store their profile images on the server, with image names stored in the database.
Actor Information API Integration: Utilizes the MDBI API to fetch and display actors born on the same date as the user’s birthdate.5. **Dynamic Header and Footer**:
Includes reusable header and footer components for a consistent look and feel across the site.
6. **Automatic Email Notification**:
- An email is automatically sent upon a new user registration with the subject "New registered user" and the content "A new user `` is registered to the system".7. **Automated Testing**:
- Five automated test functions are included using Laravel's testing framework, with at least one feature test ensuring that new student data is inserted and displayed correctly.8. **Multi-Language Support**:
- Supports English and an additional language (recommended: Arabic), allowing users to switch between languages.9. **Client-Side and Server-Side Validations**:
- Validations are implemented to ensure data integrity and proper user input validation.10. **Laravel Master Layout**:
- Uses Laravel's master layout feature to include a consistent header and footer across all pages.11. **AJAX Support**:
- Implements AJAX and integrates a born-in-the-same-day API for dynamic content updates.12. **Password Encryption**:
- Utilizes Laravel's built-in encryption methods to secure user passwords.## Installation
1. **Clone the Repository**:
```bash
git clone https://github.com/your-username/laravel-registration-webpage.git
```2. **Navigate to the Project Directory**:
```bash
cd laravel-registration-webpage
```3. **Install Dependencies**:
```bash
composer install
```4. **Set Up Environment**:
- Copy the `.env.example` file to `.env` and configure your database and mail settings.5. **Generate Application Key**:
```bash
php artisan key:generate
```6. **Run Migrations**:
```bash
php artisan migrate
```7. **Start the Laravel Development Server**:
```bash
php artisan serve
```## Usage
- Access the registration form at `http://localhost:8000/register`.
- Upon successful registration, an automatic email notification will be sent.
- Use Laravel's testing commands to run automated tests:
```bash
php artisan test
```## Multi-Language Support
- Switch between English and the additional language (e.g., Arabic) using the language selector available on the webpage.