Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Social Signup: Handle the case where users block third-party cookies/data #13983

Merged
merged 14 commits into from
May 29, 2017
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Revert the form text changes from fc3acc4 and 4cf9438
  • Loading branch information
pento authored and drewblaisdell committed May 24, 2017
commit 8084b81282ce217f351ac6c1eac7a9eb17c8621c
10 changes: 7 additions & 3 deletions client/components/signup-form/social.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,7 @@ class SocialSignupForm extends Component {
return (
<div className="signup-form__social">
<p>
{ this.props.translate(
"Or create an account using your existing social profile. We'll never post without your permission."
) }
{ this.props.translate( 'Or create an account using your existing social profile:' ) }
</p>

<div className="signup-form__social-buttons">
Expand All @@ -57,6 +55,12 @@ class SocialSignupForm extends Component {
appId={ config( 'facebook_app_id' ) }
responseHandler={ this.handleFacebookResponse } />
</div>

<p>
{ this.props.translate(
"Connect to your existing social profile to get started faster. We'll never post without your permission."
) }
</p>
</div>
);
}
Expand Down