Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Customization to reset & forgot password templates added #335

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

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.

None yet

1 participant