{"id":25861326,"url":"https://github.com/abdullahrfa/user_registration_system_with_django","last_synced_at":"2026-03-04T08:02:16.003Z","repository":{"id":279428920,"uuid":"938779105","full_name":"AbdullahRFA/User_registration_system_with_django","owner":"AbdullahRFA","description":"This is a **Django-based User Registration and Authentication System** that allows users to **sign up, log in, log out**, and access protected pages. The project uses Django's built-in authentication system and `messages` framework for user feedback.","archived":false,"fork":false,"pushed_at":"2025-02-25T18:02:55.000Z","size":71,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-25T19:19:52.654Z","etag":null,"topics":["authentication-system","bigginer-django","django-project","registration-login","registration-system"],"latest_commit_sha":null,"homepage":"","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AbdullahRFA.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-02-25T13:44:16.000Z","updated_at":"2025-02-25T18:02:58.000Z","dependencies_parsed_at":"2025-02-25T19:19:53.495Z","dependency_job_id":null,"html_url":"https://github.com/AbdullahRFA/User_registration_system_with_django","commit_stats":null,"previous_names":["abdullahrfa/user_registration_system","abdullahrfa/user_registration_system_with_django"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/AbdullahRFA/User_registration_system_with_django","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AbdullahRFA%2FUser_registration_system_with_django","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AbdullahRFA%2FUser_registration_system_with_django/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AbdullahRFA%2FUser_registration_system_with_django/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AbdullahRFA%2FUser_registration_system_with_django/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AbdullahRFA","download_url":"https://codeload.github.com/AbdullahRFA/User_registration_system_with_django/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AbdullahRFA%2FUser_registration_system_with_django/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30075915,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-04T08:01:56.766Z","status":"ssl_error","status_checked_at":"2026-03-04T08:00:42.919Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["authentication-system","bigginer-django","django-project","registration-login","registration-system"],"created_at":"2025-03-01T23:34:25.584Z","updated_at":"2026-03-04T08:02:15.988Z","avatar_url":"https://github.com/AbdullahRFA.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Django User Registration and Authentication System\n\n## 📌 Project Overview\nThis is a **Django-based User Registration and Authentication System** that allows users to **sign up, log in, log out**, and access protected pages. The project uses Django's built-in authentication system and `messages` framework for user feedback.\n\n## ✨ Features\n- **User Signup** with username, email, and password validation.\n- **Login and Logout** functionality.\n- **Error Handling** for invalid credentials, duplicate usernames/emails, and password mismatches.\n- **Authenticated Routes**: Certain pages are only accessible after login.\n- **Bootstrap Integration** for better UI/UX.\n\n## 🛠️ Technologies Used\n- **Django** (Python Web Framework)\n- **SQLite** (Default Django database for development)\n- **Bootstrap** (For frontend styling)\n- **HTML, CSS, JavaScript**\n\n## 📂 Project Structure\n```\nproject_root/\n│── app_name/\n│   ├── migrations/\n│   ├── templates/\n│   │   ├── base.html\n│   │   ├── home.html\n│   │   ├── login.html\n│   │   ├── signup.html\n│   │   ├── about.html\n│   │   ├── services.html\n│   ├── views.py\n│   ├── urls.py\n│   ├── models.py\n│   ├── forms.py\n│── project_name/\n│   ├── settings.py\n│   ├── urls.py\n│── manage.py\n│── db.sqlite3\n│── README.md\n```\n\n## 🚀 Setup and Installation\n### 1️⃣ Clone the Repository\n```bash\ngit clone https://github.com/AbdullahRFA/User_registration_system_with_django.git\ncd Registration_System\n```\n\n### 2️⃣ Create and Activate a Virtual Environment\n```bash\npython -m venv venv\nsource venv/bin/activate  # On Mac/Linux\nvenv\\Scripts\\activate  # On Windows\n```\n\n### 3️⃣ Install Dependencies\n```bash\npip install -r requirements.txt\n```\n\n### 4️⃣ Run Migrations\n```bash\npython manage.py migrate\n```\n\n### 5️⃣ Create a Superuser (Optional)\n```bash\npython manage.py createsuperuser\n```\n\n### 6️⃣ Start the Development Server\n```bash\npython manage.py runserver\n```\nOpen **http://127.0.0.1:8000/** in your browser.\n\n## 🔑 User Authentication Flow\n1. **Signup** at `/signup` → Creates a new user.\n2. **Login** at `/login` → Authenticates user and redirects to home.\n3. **Logout** → Logs out and redirects to login page.\n4. **Authenticated Pages**: `@login_required` decorator ensures some pages are accessible only after login.\n\n## 📜 API Endpoints\n| Endpoint      | Method | Description |\n|--------------|--------|-------------|\n| `/signup`    | POST   | Register a new user |\n| `/login`     | POST   | Log in an existing user |\n| `/logout`    | GET    | Logout the current user |\n| `/`          | GET    | Home page (requires login) |\n| `/about`     | GET    | About page |\n| `/services`  | GET    | Services page |\n\n## 🛠️ Future Enhancements\n- Add **password reset functionality**.\n- Implement **social authentication** (Google, Facebook login).\n- Improve **UI design** with more styling.\n\n## 🤝 Contributing\nContributions are welcome! Feel free to fork this repository and submit a pull request.\n\n## 📜 License\nThis project is licensed under the **MIT License**.\n\n---\n\n\n## 📬 Contact\n- **Developer:** Abdullah Nazmus-Sakib\n- **GitHub:** [AbdullahRFA](https://github.com/AbdullahRFA)\n- **Portfolio:** [abdullah-nazmus-sakib-rfa.netlify.app](https://abdullah-nazmus-sakib-rfa.netlify.app/)\n- **Email:** [shakibrybmn@gmail.com)](mailto:shakibrybmn@gmail.com)\n\n### Developed with ❤️ using Django.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabdullahrfa%2Fuser_registration_system_with_django","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fabdullahrfa%2Fuser_registration_system_with_django","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabdullahrfa%2Fuser_registration_system_with_django/lists"}