// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved. // See License.txt for license information. module.exports = React.createClass({ handleResend: function() { window.location.href = window.location.href + "&resend=true" }, render: function() { var title = ""; var body = ""; var resend = ""; if (this.props.isVerified === "true") { title = config.SiteName + " Email Verified"; body =

Your email has been verified! Click here to log in.

; } else { title = config.SiteName + " Email Not Verified"; body =

Please verify your email address. Check your inbox for an email.

; resend = } return (

{ title }

{ body } { resend }
); } });