Differential / accounts-entry

Meteor sign up and sign in pages
http://github.differential.com/accounts-entry/
MIT License
305 stars 189 forks source link

accounts-password dependency #281

Open saitodisse opened 10 years ago

saitodisse commented 10 years ago

Hello,

Whenever I try to remove accounts-password it comes back because it seems to be a dependency of the accounts-entry. Is there any way to prevent the user password and buttons to be displayed? I hope there is some simple configuration for this.

This is my /.meteor/packages file

# Meteor packages used by this project, one per line.
#
# 'meteor add' and 'meteor remove' will edit this file for you,
# but you can also edit it by hand.

# meteorhacks:fast-render

less
pinglamb:bootstrap3

standard-app-packages
mrt:minimongoid@0.8.8
iron:router

mrt:moment
random

alanning:roles
joshowens:accounts-entry
accounts-facebook
accounts-google

aldeed:collection2
aldeed:autoform

cmather:handlebars-server@0.2.0
jparker:crypto-md5

mrt:underscore-string-latest

alamont:chartjs
saitodisse commented 10 years ago

I found a trickster way to solve my problem:

Template.entrySignIn.rendered = function() {
    $('.email-option').remove();
    $('.entry-form').remove();
    $('.entry-signup-cta').remove();
};
pauljohncleary commented 10 years ago

same problem here, is there a way to remove this dependency from the package?

mmoyles87 commented 9 years ago

Yes, this package should not be a dep.