{"id":19298824,"url":"https://github.com/studiointeract/accounts-ionic","last_synced_at":"2025-08-18T13:09:35.465Z","repository":{"id":78296835,"uuid":"56378030","full_name":"studiointeract/accounts-ionic","owner":"studiointeract","description":"Ionic – Accounts UI for React in Meteor 1.3","archived":false,"fork":false,"pushed_at":"2016-05-24T21:10:05.000Z","size":3148,"stargazers_count":6,"open_issues_count":0,"forks_count":2,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-22T09:45:19.700Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/studiointeract.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2016-04-16T10:29:31.000Z","updated_at":"2021-11-08T12:05:17.000Z","dependencies_parsed_at":"2023-02-28T04:31:50.252Z","dependency_job_id":null,"html_url":"https://github.com/studiointeract/accounts-ionic","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/studiointeract/accounts-ionic","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/studiointeract%2Faccounts-ionic","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/studiointeract%2Faccounts-ionic/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/studiointeract%2Faccounts-ionic/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/studiointeract%2Faccounts-ionic/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/studiointeract","download_url":"https://codeload.github.com/studiointeract/accounts-ionic/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/studiointeract%2Faccounts-ionic/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270997238,"owners_count":24682007,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-18T02:00:08.743Z","response_time":89,"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":[],"created_at":"2024-11-09T23:09:15.418Z","updated_at":"2025-08-18T13:09:35.456Z","avatar_url":"https://github.com/studiointeract.png","language":"JavaScript","readme":"# Ionic – Accounts UI for React in Meteor 1.3\n\nCurrent version 1.1.0\n\n![Ionic – Accounts UI for React in Meteor 1.3](https://raw.githubusercontent.com/studiointeract/accounts-ionic/master/accounts-ionic.gif)\n\n## Features\n\n1. **[Easy to use](https://github.com/studiointeract/accounts-ui#using-react-accounts-ui)**, mixing the ideas of useraccounts configuration and accounts-ui that everyone already knows and loves.\n2. **[Components](https://github.com/studiointeract/accounts-ui#available-components)** are everywhere, and extensible by replacing them on Accounts.ui.\n3. **[Basic routing](https://github.com/studiointeract/accounts-ui#configuration)** included, redirections when the user clicks a link in an email or when signing in or out.\n4. **[Unstyled](https://github.com/studiointeract/accounts-ui#styling)** is the default, no CSS included.\n5. **[No password](https://github.com/studiointeract/accounts-ui#no-password-required)** sign up and sign in are included.\n6. **[Extra fields](https://github.com/studiointeract/accounts-ui#extra-fields)** is now supported.\n7. **[Server Side Rendering](https://github.com/studiointeract/accounts-ui#example-setup-using-flowrouter-meteor-13)** are supported, trough FlowRouter (SSR).\n7. **[Extending](https://github.com/studiointeract/accounts-ui#create-your-own-styled-version)** to make your own custom form, for your app, or as a package, all components can be extended and customized.\n9. **[States API](https://github.com/studiointeract/accounts-ui#example-setup-using-the-states-api)** makes it possible to use the form on different routes, say you want the login on one route and signup on another, just set the inital state and the links (either globally or per component by using the props).\n\n### Based on and extends std:accounts-ui\n\n[https://atmospherejs.com/std/accounts-ui](https://atmospherejs.com/std/accounts-ui)\n\n## Installation\n\n`meteor add std:accounts-ionic`\n\n## Configuration\n\nWe support the standard [configuration in the account-ui package](http://docs.meteor.com/#/full/accounts_ui_config). But have extended with some new options.\n\n\u003e [Accounts.ui.config(options)](https://github.com/std/accounts-ui#configuration)\n\n### Example setup (Meteor 1.3)\n\n`meteor add accounts-password`  \n`npm i --save reactionic`  \n`meteor add std:accounts-ionic`\n\n```javascript\n\nimport React from 'react';\nimport { Accounts } from 'meteor/std:accounts-ionic';\n\nAccounts.ui.config({\n  passwordSignupFields: 'NO_PASSWORD',\n  loginPath: '/',\n});\n\nif (Meteor.isClient) {\n  ReactDOM.render(\u003cAccounts.ui.LoginForm /\u003e, document.body)\n}\n\n```\n\n## Example setup using FlowRouter (Meteor 1.3)\n\n`meteor add accounts-password`  \n`npm i --save reactionic`  \n`meteor add std:accounts-semantic`  \n`meteor add kadira:flow-router-ssr`\n\n```javascript\n\nimport { FlowRouter } from 'meteor/kadira:flow-router-ssr';\nimport { Accounts } from 'meteor/std:accounts-ionic';\nimport React from 'react';\n\nAccounts.ui.config({\n  passwordSignupFields: 'NO_PASSWORD',\n  loginPath: '/login',\n  onSignedInHook: () =\u003e FlowRouter.go('/'),\n  onSignedOutHook: () =\u003e FlowRouter.go('/')\n});\n\nFlowRouter.route(\"/login\", {\n  action(params) {\n    mount(MainLayout, {\n      content: \u003cAccounts.ui.LoginForm /\u003e\n    });\n  }\n});\n\n```\n\n## Credits\n\nMade by the [creative folks at Studio Interact](http://studiointeract.com)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstudiointeract%2Faccounts-ionic","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstudiointeract%2Faccounts-ionic","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstudiointeract%2Faccounts-ionic/lists"}