Skip to content

Instantly share code, notes, and snippets.

@robertjd
Created March 17, 2015 19:31
Show Gist options
  • Save robertjd/05d6036267ac03bf86e3 to your computer and use it in GitHub Desktop.
Save robertjd/05d6036267ac03bf86e3 to your computer and use it in GitHub Desktop.
missing password reset directives

We want to modify the two views that we created in the last steps.

Open client/app/passwordReset/passwordReset.html and replace it's contents with this:

<div ng-include="'components/navbar/navbar.html'"></div>

<div class="container">
  <div class="row">
    <div class="col-xs-12">
      <h3>Reset Your Password</h3>
      <hr>
    </div>
  </div>
  <div sp-password-reset-form></div>
</div>

Next find client/app/passwordResetRequest/passwordResetRequest.html and replace it's contents with this:

<div ng-include="'components/navbar/navbar.html'"></div>

<div class="container">
  <div class="row">
    <div class="col-xs-12">
      <h3>Request Password Reset</h3>
      <hr>
    </div>
  </div>
  <div sp-password-reset-request-form></div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment