Last active
April 13, 2017 12:56
-
-
Save phaistonian/3b5db43279c68a15ab8de0df8c2a6365 to your computer and use it in GitHub Desktop.
The reset password template file for BPMail
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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