New to meteor.
Having problems configuring accounts-ui-bootstrap-3. {{> loginButtons}} shows OK but when clicked there is NO email address field!
In server>accounts.js I have
// setup accounts on meteor startup
Meteor.startup(function(){
// configure accounts
Accounts.config({
sendVerificationEmail: true,
forbidClientAccountCreation: false
});
});
I have the following packages installed:
meteor-platform
autopublish
insecure
jquery
iron:router
dburles:google-maps
accounts-password
twbs:bootstrap
ian:accounts-ui-bootstrap-3
accounts-facebook
email
accounts-google
accounts-twitter
Several issues:
As pointed out by uZar accounts-base needs to be installed.
Additionally, accounts needs to be configured on both the Client and server side.
On the server:
On the client:
If you want to add fields to the registration, on the client: