A replacement for accounts-ui
designed to work in Universe ecosystem: Modules, React and Semantic UI.
meteor add universe:accounts-ui
-
This package assumes that you're using React
-
This package uses Semantic UI styling classes, but you have to add styles on your own, e.g.
meteor add semantic:ui
-
Login options will show based on installed packages and you need to add them manually, e.g.
meteor add accounts-password accounts-facebook ...
- You need to set up own routes
- Place
accounts-ui
components where you wish to render forms
Basic usage could look like:
import {ComboBox} from 'meteor/universe:accounts-ui';
Router.route('/login', {
name: 'login',
action () {
mount(Layout, {
content: <ComboBox />
});
}
});
LoginBox
- simple login formRegisterBox
- simple register formComboBox
- both above forms combined into oneResetPasswordBox
- password reset form
No config yet, but will have similar configuration to accounts-ui
.
- Has UI for password reset, but don't provide server-side functionality yet.
- You need to set ServiceConfiguration options for external services on your own, no forms yet