{"id":21347450,"url":"https://github.com/devhyrum/front-end-authentication-system","last_synced_at":"2026-04-18T06:01:43.097Z","repository":{"id":249588904,"uuid":"831914283","full_name":"devHyrum/Front-end-Authentication-System","owner":"devHyrum","description":"O aplicativo permite que os usuários se registrem, façam login e gerenciem seu perfil","archived":false,"fork":false,"pushed_at":"2024-10-15T01:13:28.000Z","size":133,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-16T04:16:43.153Z","etag":null,"topics":["dark-theme","figma","react","tailwindcss"],"latest_commit_sha":null,"homepage":"https://front-end-authentication-system.onrender.com","language":"JavaScript","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/devHyrum.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":"2024-07-22T01:08:14.000Z","updated_at":"2024-10-15T01:13:32.000Z","dependencies_parsed_at":"2025-01-22T16:33:14.490Z","dependency_job_id":"a57a4873-e949-414e-989a-f463c10103d6","html_url":"https://github.com/devHyrum/Front-end-Authentication-System","commit_stats":null,"previous_names":["devhyrum/front-end-authentication-system"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/devHyrum/Front-end-Authentication-System","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devHyrum%2FFront-end-Authentication-System","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devHyrum%2FFront-end-Authentication-System/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devHyrum%2FFront-end-Authentication-System/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devHyrum%2FFront-end-Authentication-System/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devHyrum","download_url":"https://codeload.github.com/devHyrum/Front-end-Authentication-System/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devHyrum%2FFront-end-Authentication-System/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31958467,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T00:39:45.007Z","status":"online","status_checked_at":"2026-04-18T02:00:07.018Z","response_time":103,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["dark-theme","figma","react","tailwindcss"],"created_at":"2024-11-22T02:14:15.868Z","updated_at":"2026-04-18T06:01:43.049Z","avatar_url":"https://github.com/devHyrum.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Front-end Authentication System\n![mobile](./public/mobile.png)\n![desktop](./public/desktop.png)\nEste repositorio contiene el frontend para un sistema de autenticación. La aplicación permite a los usuarios registrarse, iniciar sesión, y gestionar su perfil. Está construido con React y utiliza Tailwind CSS para los estilos. Design fue extraído de **[Figma](https://www.figma.com/design/ZM0DPZbzK39o3rqwiaOPTD/Authentication-App?node-id=0-1\u0026node-type=CANVAS\u0026t=0BCcbhAvC6zVs1al-0)**\n\n## Tabla de Contenidos\n\n- [Instalación](#instalación)\n- [Uso](#uso)\n- [Componentes](#componentes)\n- [Contexto de Tema](#contexto-de-tema)\n- [Estructura del Proyecto](#estructura-del-proyecto)\n- [Contribuciones](#contribuciones)\n- [Licencia](#licencia)\n\n## Instalación\n\n1. Clona el repositorio:\n\n```bash\ngit clone https://github.com/devHyrum/Front-end-Authentication-System.git\n```\n2. Navega al directorio del proyecto:\n```bash\ncd Front-end-Authentication-System\n```\n3. Instala las dependencias:\n```bash\nnpm install\n```\n## Uso\nPara iniciar el servidor de desarrollo, ejecuta:\n```bash\nnpm start\n```\nLa aplicación se ejecutará en http://localhost:5173/.\n\n## Componentes\n### Login\nEl componente Login permite a los usuarios iniciar sesión con su nombre de usuario y contraseña. También incluye la funcionalidad para cambiar entre el modo oscuro y el modo claro.\n\n### Register\nEl componente Register permite a los usuarios registrarse en la aplicación proporcionando su nombre de usuario, contraseña y correo electrónico.\n\n### Profile\nEl componente Profile muestra la información del usuario y permite actualizar el perfil, incluyendo la imagen de perfil.\n\n## Estructura del Proyecto\n```plaintext\n├── src\n│   ├── assets\n│   │   └── ... (imágenes y otros recursos)\n│   ├── components\n│   │   ├── EditUser.jsx\n│   │   ├── GroupChat.jsx\n│   │   ├── Header.jsx\n│   │   ├── Login.jsx\n│   │   ├── Register.jsx\n│   │   └── Profile.jsx\n│   ├── context\n│   │   └── ThemeContext.jsx\n│   ├── App.jsx\n│   ├── index.css\n│   └──  main.jsx\n├── tailwind.config.js\n├── package.json\n└── README.md\n```\n##  Contribuciones\nLas contribuciones son bienvenidas. Para contribuir, por favor sigue estos pasos:\n\n1. Haz un fork del repositorio.\n2. Crea una nueva rama (git checkout -b feature-nueva-funcionalidad).\n3. Realiza tus cambios.\n4. Haz un commit de tus cambios (git commit -am 'Añadir nueva funcionalidad').\n5. Sube tus cambios (git push origin feature-nueva-funcionalidad).\n6. Abre un Pull Request.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevhyrum%2Ffront-end-authentication-system","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevhyrum%2Ffront-end-authentication-system","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevhyrum%2Ffront-end-authentication-system/lists"}