Accounts.emailTemplates

Server Accounts.emailTemplates import { Accounts } from 'meteor/accounts-base' Source Options to customize emails sent from the Accounts system.

Accounts.createUser

Anywhere Accounts.createUser(options, [callback]) import { Accounts } from 'meteor/accounts-base' Source Create a new user. Arguments callback Function Client only, optional callback. Called with no arguments on success, or with a single Error argument on failure. Options username String A unique name for this user. email String The user's email address. password String The user's password. This is not sent in plain text over the wire. profile Object The user's prof

Accounts.changePassword

Client Accounts.changePassword(oldPassword, newPassword, [callback]) import { Accounts } from 'meteor/accounts-base' Source Change the current user's password. Must be logged in. Arguments oldPassword String The user's current password. This is not sent in plain text over the wire. newPassword String A new password for the user. This is not sent in plain text over the wire. callback Function Optional callback. Called with no arguments on success, or with a single Error argume

Accounts.addEmail

Server Accounts.addEmail(userId, newEmail, [verified]) import { Accounts } from 'meteor/accounts-base' Source Add an email address for a user. Use this instead of directly updating the database. The operation will fail if there is a different user with an email only differing in case. If the specified user has an existing email only differing in case however, we replace it. Arguments userId String The ID of the user to update. newEmail String A new email address for the user. v

accounts-ui

accounts-ui A turn-key user interface for Meteor Accounts. To add Accounts and a set of login controls to an application, add the accounts-ui package and at least one login provider package: accounts-password, accounts-facebook, accounts-github, accounts-google, accounts-twitter, or accounts-weibo. Then simply add the {{> loginButtons}} helper to an HTML file. This will place a login widget on the page. If there is only one provider configured and it is an external service, this will add a