diff --git a/_chapters/handle-forgot-and-reset-password.md b/_chapters/handle-forgot-and-reset-password.md index f586e75ca..8d26ebf27 100644 --- a/_chapters/handle-forgot-and-reset-password.md +++ b/_chapters/handle-forgot-and-reset-password.md @@ -117,10 +117,11 @@ export default class ResetPassword extends Component { type="submit" bsSize="large" loadingText="Sending…" - text="Send Confirmation" isLoading={this.state.isSendingCode} disabled={!this.validateCodeForm()} /> + Send Confirmation + ); } @@ -162,11 +163,12 @@ export default class ResetPassword extends Component { block type="submit" bsSize="large" - text="Confirm" loadingText="Confirm…" isLoading={this.state.isConfirming} disabled={!this.validateResetForm()} /> + Confirm + ); } @@ -246,12 +248,7 @@ Finally, let's link this up with the rest of our app. Add the route to `src/Routes.js`. ``` html - + ``` And import it in the header.