Meteor accounts-ui styled with twitter/bootstrap dropdown
Use the meteorite package manager http://oortcloud.github.com/meteorite/
[sudo] npm install -g meteorite
mrt add accounts-ui-bootstrap-dropdown
meteor add bootstrap
meteor add accounts-password
Add {{> loginButtons }} to your template
Add Accounts configuration to your javascript file
i.e.
if (Meteor.isClient) { Accounts.ui.config({ passwordSignupFields: 'USERNAME_AND_OPTIONAL_EMAIL' });
...