generated from eea/volto-addon-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #181 from eea/develop
Update Twitter logo in Share to section.
- Loading branch information
Showing
9 changed files
with
103 additions
and
19 deletions.
There are no files selected for viewing
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
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
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
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
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
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
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
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
41 changes: 41 additions & 0 deletions
41
src/customizations/volto/components/theme/PasswordReset/RequestPasswordReset.jsx
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
import React from 'react'; | ||
import { Container } from 'semantic-ui-react'; | ||
import { FormattedMessage } from 'react-intl'; | ||
|
||
function RequestPasswordReset() { | ||
return ( | ||
<Container id="passwordreset"> | ||
<h1 className="documentFirstHeading"> | ||
<FormattedMessage id="Lost Password" defaultMessage="Lost Password" /> | ||
</h1> | ||
<p className="documentDescription"> | ||
<div> | ||
<FormattedMessage | ||
id="For security reasons, we store your password encrypted, and cannot mail it to you. If you would like to reset your password, fill out the form below and we will send you an email at the address you gave when you registered to start the process of resetting your password." | ||
defaultMessage="For security reasons, we store your password encrypted, and cannot mail it to you. If you would like to reset your password, fill out the form below and we will send you an email at the address you gave when you registered to start the process of resetting your password." | ||
/> | ||
</div> | ||
</p> | ||
<div className="documentContent"> | ||
<p> | ||
<FormattedMessage | ||
id="To reset your password visit {link}." | ||
defaultMessage="To reset your password visit {link}." | ||
values={{ | ||
link: ( | ||
<a href="https://www.eionet.europa.eu/password-reset"> | ||
<FormattedMessage | ||
id="Reset Eionet account password page" | ||
defaultMessage="Reset Eionet account password page" | ||
/> | ||
</a> | ||
), | ||
}} | ||
/> | ||
</p> | ||
</div> | ||
</Container> | ||
); | ||
} | ||
|
||
export default RequestPasswordReset; |