Skip to content

Customization to reset & forgot password templates added#335

Open
shkomg wants to merge 1 commit intoDifferential:masterfrom
shkomg:patch-1
Open

Customization to reset & forgot password templates added#335
shkomg wants to merge 1 commit intoDifferential:masterfrom
shkomg:patch-1

Conversation

@shkomg
Copy link

@shkomg shkomg commented Dec 17, 2014

Use the same way to customize forgot & reset password templates as is is possible for sign in/up templates:

Client or shared code (my model.js):

Meteor.startup(function () {
    // code to run on server at startup                                                                                                                                                   
    AccountsEntry.config({
        signUpTemplate: 'my-sign-up',
        signInTemplate: 'my-sign-in',
        forgotPasswordTemplate: 'my-forgot-password',
        resetPasswordTemplate: 'my-reset-password'
    });
});

My forgot-password.html:

<template name="my-forgot-password">
  <div class="wrapper">
    {{> header}}
    <section>
      {{> entryForgotPassword}}
    </section>
  </div><!--//wrapper-->
  {{> footer}}
</template>

Use the same way to customize forgot & reset password templates as is is possible for sign in/up templates:

Client or shared code (my model.js):
```
Meteor.startup(function () {
    // code to run on server at startup                                                                                                                                                   
    AccountsEntry.config({
        signUpTemplate: 'my-sign-up',
        signInTemplate: 'my-sign-in',
        forgotPasswordTemplate: 'my-forgot-password',
        resetPasswordTemplate: 'my-reset-password'
    });
});
```
My forgot-password.html:
```
<template name="my-forgot-password">
  <div class="wrapper">
    {{> header}}
    <section>
      {{> entryForgotPassword}}
    </section>
  </div><!--//wrapper-->
  {{> footer}}
</template>
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant