Skip to content

Instantly share code, notes, and snippets.

@phaistonian
Last active April 13, 2017 12:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save phaistonian/3b5db43279c68a15ab8de0df8c2a6365 to your computer and use it in GitHub Desktop.
Save phaistonian/3b5db43279c68a15ab8de0df8c2a6365 to your computer and use it in GitHub Desktop.
The reset password template file for BPMail
const App = props => {
const { authKey, recipientId } = props;
return (
<Body>
<Header />
<MainMessage img="reset_pass">
<P>Λάβαμε αίτημα για αλλαγή κωδικού πρόσβασης του λογαριασμού σου στο BestPrice.
Για να αλλάξεις τον κωδικό σου κάνε κλικ στο παρακάτω κουμπί:</P>
<Button href={getResetPasswordLink(recipientId, authKey)}>
Αλλαγή κωδικού
</Button>
<P>Αν <strong>δεν</strong> ζήτησες αλλαγή κωδικού, παρακαλούμε αγνόησε αυτό το e-mail.</P>
</MainMessage>
<Footer />
</Body>
);
};
App.propTypes = {
authKey: PropTypes.string,
recipientId: PropTypes.string,
};
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment