meteor-useraccounts / core

Meteor sign up and sign in templates' core functionalities
http://useraccounts.meteor.com/
MIT License
529 stars 278 forks source link

How to change "Forgot you password text? #745

Open jonstra opened 7 years ago

jonstra commented 7 years ago

Hi. I'm creating a Norwegian site and need to change the following fields in useraccounts:bootstrap:

I could change all other fields using AccountsTemplates.configure().

Can someone tell me how this is done? Thank you.

jonstra commented 7 years ago

Can any DEVs comment on this please? Thank you.

twentyfortysix commented 6 years ago

You have to override the template with your own. https://github.com/meteor-useraccounts/core/blob/master/Guide.md#templates

js: Template['overrideAtFrom'].replaces('atForm');

html:

<template name="overrideAtFrom">
<div class="at-form">
// the whole thing
</div>
</template>