Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions src/components/Session/withEmailVerification.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ const withEmailVerification = Component => {
<div>
{this.state.isSent ? (
<p>
E-Mail confirmation sent: Check you E-Mails (Spam
folder included) for a confirmation E-Mail.
Refresh this page once you confirmed your E-Mail.
Email confirmation sent: check your Inbox (Spam
folder included) for a confirmation email.
Refresh this page once you confirmed your email.
</p>
) : (
<p>
Verify your E-Mail: Check you E-Mails (Spam folder
included) for a confirmation E-Mail or send
another confirmation E-Mail.
Verify your email: check your Inbox (Spam folder
included) for a confirmation email or send
another confirmation email.
</p>
)}

Expand All @@ -49,7 +49,7 @@ const withEmailVerification = Component => {
onClick={this.onSendEmailVerification}
disabled={this.state.isSent}
>
Send confirmation E-Mail
Send confirmation email
</button>
</div>
) : (
Expand Down