Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to customize Meteor accounts-ui modal popup dialogs?

I wanna add custom styling to meteor accounts-ui password reset model pop up dialog. Without adding accounts-ui-unstyled how can I do this? Is there a way to open our custom template for password reset link?

like image 234
Buddhika Avatar asked Nov 02 '22 01:11

Buddhika


1 Answers

You have to add in the code for the accounts-ui-unstyled package in somehow so there isn't a way to avoid that.

You could do this if you want: Create a directory called accounts-ui-unstyled in your /packages folder and copy everything over from https://github.com/meteor/meteor/tree/devel/packages/accounts-ui-unstyled

You can add this package in with meteor add accounts-ui-unstyled and it should override the default package with the one you made manually and use your edits instead.

You can then edit it as you please.

like image 67
Tarang Avatar answered Nov 15 '22 06:11

Tarang