{"id":15024373,"url":"https://github.com/mdbootstrap/react-login-form","last_synced_at":"2026-02-14T22:05:14.544Z","repository":{"id":46703799,"uuid":"515553522","full_name":"mdbootstrap/react-login-form","owner":"mdbootstrap","description":"Responsive login form built with Bootstrap 5. Collection of examples for signup forms, full page login templates, login modals \u0026 many other sign in designs.","archived":false,"fork":false,"pushed_at":"2022-08-04T09:26:46.000Z","size":976,"stargazers_count":8,"open_issues_count":0,"forks_count":7,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-10T15:29:10.944Z","etag":null,"topics":["bootstrap","bootstrap-template","bootstrap-theme","bootstrap5","css","form","html","login","react","register"],"latest_commit_sha":null,"homepage":"https://mdbootstrap.com/docs/react/extended/login-form/","language":"SCSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mdbootstrap.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"License.pdf","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-07-19T11:20:38.000Z","updated_at":"2025-08-28T05:04:54.000Z","dependencies_parsed_at":"2022-09-25T15:12:09.954Z","dependency_job_id":null,"html_url":"https://github.com/mdbootstrap/react-login-form","commit_stats":null,"previous_names":["iprzybysz/react-login-form"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mdbootstrap/react-login-form","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mdbootstrap%2Freact-login-form","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mdbootstrap%2Freact-login-form/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mdbootstrap%2Freact-login-form/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mdbootstrap%2Freact-login-form/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mdbootstrap","download_url":"https://codeload.github.com/mdbootstrap/react-login-form/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mdbootstrap%2Freact-login-form/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29457848,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-14T21:29:27.764Z","status":"ssl_error","status_checked_at":"2026-02-14T21:28:11.111Z","response_time":53,"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":["bootstrap","bootstrap-template","bootstrap-theme","bootstrap5","css","form","html","login","react","register"],"created_at":"2024-09-24T20:00:12.305Z","updated_at":"2026-02-14T22:05:14.516Z","avatar_url":"https://github.com/mdbootstrap.png","language":"SCSS","readme":"Responsive React Login form built with Bootstrap 5. Collection of examples for signup forms, full page login templates, login modals \u0026 many other sign in designs.\n\nCheck out [React Login Form Documentation](https://mdbootstrap.com/docs/b5/react/extended/login-form/) for detailed instructions \u0026 even more examples.\n\n## Basic example \n![React Login Form Basic Example](https://user-images.githubusercontent.com/108793661/179740642-436b2543-7e99-4ae6-a3da-89371056d2f9.png)\n```js\nimport React from 'react';\nimport {\n  MDBContainer,\n  MDBInput,\n  MDBCheckbox,\n  MDBBtn,\n  MDBIcon\n}\nfrom 'mdb-react-ui-kit';\n\nfunction App() {\n  return (\n    \u003cMDBContainer className=\"p-3 my-5 d-flex flex-column w-50\"\u003e\n\n      \u003cMDBInput wrapperClass='mb-4' label='Email address' id='form1' type='email'/\u003e\n      \u003cMDBInput wrapperClass='mb-4' label='Password' id='form2' type='password'/\u003e\n\n      \u003cdiv className=\"d-flex justify-content-between mx-3 mb-4\"\u003e\n        \u003cMDBCheckbox name='flexCheck' value='' id='flexCheckDefault' label='Remember me' /\u003e\n        \u003ca href=\"!#\"\u003eForgot password?\u003c/a\u003e\n      \u003c/div\u003e\n\n      \u003cMDBBtn className=\"mb-4\"\u003eSign in\u003c/MDBBtn\u003e\n\n      \u003cdiv className=\"text-center\"\u003e\n        \u003cp\u003eNot a member? \u003ca href=\"#!\"\u003eRegister\u003c/a\u003e\u003c/p\u003e\n        \u003cp\u003eor sign up with:\u003c/p\u003e\n\n        \u003cdiv className='d-flex justify-content-between mx-auto' style={{width: '40%'}}\u003e\n          \u003cMDBBtn tag='a' color='none' className='m-1' style={{ color: '#1266f1' }}\u003e\n            \u003cMDBIcon fab icon='facebook-f' size=\"sm\"/\u003e\n          \u003c/MDBBtn\u003e\n\n          \u003cMDBBtn tag='a' color='none' className='m-1' style={{ color: '#1266f1' }}\u003e\n            \u003cMDBIcon fab icon='twitter' size=\"sm\"/\u003e\n          \u003c/MDBBtn\u003e\n\n          \u003cMDBBtn tag='a' color='none' className='m-1' style={{ color: '#1266f1' }}\u003e\n            \u003cMDBIcon fab icon='google' size=\"sm\"/\u003e\n          \u003c/MDBBtn\u003e\n\n          \u003cMDBBtn tag='a' color='none' className='m-1' style={{ color: '#1266f1' }}\u003e\n            \u003cMDBIcon fab icon='github' size=\"sm\"/\u003e\n          \u003c/MDBBtn\u003e\n\n        \u003c/div\u003e\n      \u003c/div\u003e\n\n    \u003c/MDBContainer\u003e\n  );\n}\n\nexport default App;\n```\n\n## How to use?\n\n1. Download MDB 5 - free REACT UI KIT\n\n2. Choose your favourite customized component and click on the image\n\n3. Copy \u0026 paste the code into your MDB project\n\n[▶️ Subscribe to YouTube channel for web development tutorials \u0026 resources](https://www.youtube.com/MDBootstrap?sub_confirmation=1)\n\n## More examples\n### Login - register:\n[![React Login Form #1](https://user-images.githubusercontent.com/108793661/179741257-e1721924-fd14-491e-8cec-58e6a2d15010.png)](https://mdbootstrap.com/docs/b5/react/extended/login-form/#section-login-register-example)\n### Login - register:\n[![React Login Form #2](https://user-images.githubusercontent.com/108793661/179741423-aed783c4-7978-459c-be7e-20ff6032ebda.png)](https://mdbootstrap.com/docs/b5/react/extended/login-form/#section-login-page-example)\n### Login Template:\n[![React Login Form #3](https://user-images.githubusercontent.com/108793661/179741559-54f89d57-d4fa-49b2-9250-f5efe7f86648.png)](https://mdbootstrap.com/docs/b5/react/extended/login-form/#section-login-template-example)\n### Sign in form:\n[![React Login Form #4](https://user-images.githubusercontent.com/108793661/179741654-f6c7d0e3-1af9-45e3-8037-7afc1b836bb7.png)](https://mdbootstrap.com/docs/b5/react/extended/login-form/#section-sign-in-form-example)\n\nYou can find other examples [here](https://mdbootstrap.com/docs/b5/react/extended/login-form/).\n\n\u003chr\u003e\n\n## More extended React documentation\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://mdbootstrap.com/docs/react/extended/code/\"\u003eReact Bootstrap Code\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://mdbootstrap.com/docs/react/extended/gallery/\"\u003eReact Bootstrap Gallery\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://mdbootstrap.com/docs/react/extended/hamburger-menu/\"\u003eReact Bootstrap Hamburger Menu\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://mdbootstrap.com/docs/react/extended/jumbotron/\"\u003eReact Bootstrap Jumbotron\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://mdbootstrap.com/docs/react/extended/maps/\"\u003eReact Bootstrap Maps\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://mdbootstrap.com/docs/react/extended/mega-menu//\"\u003eReact Bootstrap Mega Menu\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://mdbootstrap.com/docs/react/extended/media-object/\"\u003eReact Bootstrap Media object\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://mdbootstrap.com/docs/react/extended/multiselect/\"\u003eReact Bootstrap Multiselect\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://mdbootstrap.com/docs/react/extended/masonry/\"\u003eReact Bootstrap Masonry\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://mdbootstrap.com/docs/react/extended/contact/\"\u003eReact Bootstrap Contact form\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://mdbootstrap.com/docs/react/extended/gradients/\"\u003eReact Bootstrap Gradients\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://mdbootstrap.com/docs/react/extended/pagination/\"\u003eReact Bootstrap Pagination\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://mdbootstrap.com/docs/react/extended/panels/\"\u003eReact Bootstrap Panels\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://mdbootstrap.com/docs/react/extended/social-media/\"\u003eReact Bootstrap Social Media icons \u0026 buttons\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://mdbootstrap.com/docs/react/extended/search/\"\u003eReact Bootstrap Search\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://mdbootstrap.com/docs/react/extended/table-sort/\"\u003eReact Bootstrap Table sort\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://mdbootstrap.com/docs/react/extended/table-responsive/\"\u003eReact Bootstrap Table responsive\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://mdbootstrap.com/docs/react/extended/table-scroll/\"\u003eReact Bootstrap Table scroll\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://mdbootstrap.com/docs/react/extended/table-search/\"\u003eReact Bootstrap Table search\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://mdbootstrap.com/docs/react/extended/textarea/\"\u003eReact Bootstrap Textarea\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmdbootstrap%2Freact-login-form","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmdbootstrap%2Freact-login-form","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmdbootstrap%2Freact-login-form/lists"}