{"id":20261768,"url":"https://github.com/sudeepacharjee/authentication_flask","last_synced_at":"2026-03-19T15:01:50.091Z","repository":{"id":241082290,"uuid":"804258241","full_name":"SudeepAcharjee/Authentication_Flask","owner":"SudeepAcharjee","description":"This is a simple authentication system built using Flask. It allows users to register, log in, and view a personalized dashboard displaying their username.","archived":false,"fork":false,"pushed_at":"2024-05-26T16:23:46.000Z","size":48,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-27T06:50:41.914Z","etag":null,"topics":[],"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/SudeepAcharjee.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,"zenodo":null}},"created_at":"2024-05-22T08:54:56.000Z","updated_at":"2024-05-26T18:53:33.000Z","dependencies_parsed_at":"2024-11-14T11:29:44.490Z","dependency_job_id":"c7f77cf4-9c76-4145-981c-a863d584e01d","html_url":"https://github.com/SudeepAcharjee/Authentication_Flask","commit_stats":null,"previous_names":["sudeepacharjee/authentication_flask"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/SudeepAcharjee/Authentication_Flask","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SudeepAcharjee%2FAuthentication_Flask","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SudeepAcharjee%2FAuthentication_Flask/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SudeepAcharjee%2FAuthentication_Flask/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SudeepAcharjee%2FAuthentication_Flask/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SudeepAcharjee","download_url":"https://codeload.github.com/SudeepAcharjee/Authentication_Flask/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SudeepAcharjee%2FAuthentication_Flask/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30710540,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-19T05:29:31.190Z","status":"ssl_error","status_checked_at":"2026-03-19T05:28:25.821Z","response_time":57,"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":[],"created_at":"2024-11-14T11:26:56.311Z","updated_at":"2026-03-19T15:01:50.046Z","avatar_url":"https://github.com/SudeepAcharjee.png","language":"HTML","readme":"\n\n```markdown\n# Preview\n![Image Uploader Screenshot](/p2.jpeg)\n\n# Flask Authentication System\n\nThis is a simple authentication system built using Flask. It allows users to register, log in, and view a personalized dashboard displaying their username.\n\n## Features\n\n- User Registration\n- User Login\n- Password Hashing with bcrypt\n- Dashboard displaying the logged-in user's name\n\n## Requirements\n\nTo install the necessary dependencies, make sure you have `pip` installed and run the following command:\n\n```sh\npip install -r requirements.txt\n```\n\n### requirements.txt\n\n```\nFlask==2.0.3\nFlask-SQLAlchemy==2.5.1\nbcrypt==3.2.0\n```\n\n## Getting Started\n\nFollow these steps to set up and run the project locally.\n\n### 1. Clone the Repository\n\n```sh\ngit clone https://github.com/yourusername/flask-authentication-system.git\ncd flask-authentication-system\n```\n\n### 2. Set Up the Environment\n\nCreate a virtual environment to manage dependencies.\n\n```sh\npython -m venv venv\nsource venv/bin/activate  # On Windows use `venv\\Scripts\\activate`\n```\n\n### 3. Install Dependencies\n\n```sh\npip install -r requirements.txt\n```\n\n### 4. Configure the Application\n\nCreate a `.env` file to store your configuration variables. Add the following lines to your `.env` file:\n\n```\nSECRET_KEY=your_secret_key\nSQLALCHEMY_DATABASE_URI=sqlite:///site.db\n```\n\nReplace `your_secret_key` with a strong, random string.\n\n### 5. Initialize the Database\n\nRun the following commands to create the database and the necessary tables:\n\n```sh\nflask db init\nflask db migrate -m \"Initial migration.\"\nflask db upgrade\n```\n\n### 6. Run the Application\n\nStart the Flask application:\n\n```sh\nflask run\n```\n\nYour application will be available at `http://127.0.0.1:5000/`.\n\n## Usage\n\n### Registration\n\nNavigate to `http://127.0.0.1:5000/register` to create a new account.\n\n### Login\n\nNavigate to `http://127.0.0.1:5000/login` to log into your account.\n\n### Dashboard\n\nAfter logging in, you will be redirected to the dashboard at `http://127.0.0.1:5000/dashboard`, where you can see your username displayed.\n\n## Contributing\n\nContributions are welcome! Please create a pull request or open an issue to discuss any changes.\n\n## License\n\nThis project is licensed under the MIT License.\n```\n\nYou can copy this code into a file named `README.md` in your project repository.","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsudeepacharjee%2Fauthentication_flask","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsudeepacharjee%2Fauthentication_flask","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsudeepacharjee%2Fauthentication_flask/lists"}