https://github.com/dotansimha/accounts-ui-angular
AngularJS wrapper for Meteor's Account-UI package
https://github.com/dotansimha/accounts-ui-angular
Last synced: 6 months ago
JSON representation
AngularJS wrapper for Meteor's Account-UI package
- Host: GitHub
- URL: https://github.com/dotansimha/accounts-ui-angular
- Owner: dotansimha
- Created: 2015-11-05T20:23:01.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-04-09T19:56:12.000Z (almost 10 years ago)
- Last Synced: 2025-05-06T17:59:26.961Z (8 months ago)
- Language: JavaScript
- Size: 11.7 KB
- Stars: 17
- Watchers: 3
- Forks: 8
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# accounts-ui-angular
AngularJS wrapper for Meteor's Account-UI package
# How to use?
- Make sure you have the `angular` package in your root account.
- Add the package:
`meteor add dotansimha:accounts-ui-angular`
- Add a dependency on your AngularJS module. For example:
```javascript
angular.module('myApp', ['angular-meteor', 'accounts.ui']);
```
- Use it in your app, for example:
```html
```