I wanna let my users to login/signing up in my Meteor/Ionic app. I thought it would be easy as I use simple {{> loginButtons}}, but it gives me an error Uncaught Error: No such template: loginButtons
in console. My code is
<div class="bar bar-footer">
<button class="button button-clear">{{> loginButtons}}</button>
<div class="title">Start using!</div>
<button class="button button-clear">{{> loginButtons}}</button>
Of course I have all the neccessary packages installed (such as meteoric:ionic
and packages for auth through social networks).
So how can I do this feature anyway (I'm kinda new to all this stuff)? Any help would be appreciated, thanks.
With some help, I figured out what's the problem. I forget to add accounts-ui
package. After this everything worked really fine.