-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
removing beta tester email field (#216)
- Loading branch information
1 parent
f4a5525
commit ee20b37
Showing
1 changed file
with
0 additions
and
43 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,49 +25,6 @@ export default class Home extends React.Component { | |
<div className="hero-main" onSubmit={this.createLead}> | ||
<div className="main-content"> | ||
<h1>Expunge a criminal conviction in Utah</h1> | ||
{this.state.signedUp ? ( | ||
<> | ||
<div className="enter-your-email"> | ||
Thanks! We'll get back to you soon. In the meantime... | ||
</div> | ||
<div className="actions"> | ||
<Link to="/app"> | ||
<button className="primary"> | ||
{__("home page primary action")} | ||
</button> | ||
</Link> | ||
<Link to="/app/forms"> | ||
<button | ||
className="secondary" | ||
style={{ | ||
border: "1px solid white", | ||
marginLeft: "1.6rem" | ||
}} | ||
> | ||
{__("fill out forms")} | ||
</button> | ||
</Link> | ||
</div> | ||
</> | ||
) : ( | ||
<> | ||
<div className="enter-your-email"> | ||
Enter your email address to join our list of beta testers. | ||
</div> | ||
<form className="actions"> | ||
<input | ||
className="juicy-input" | ||
type="text" | ||
value={this.state.emailSignup} | ||
onChange={this.changeEmail} | ||
placeholder="[email protected]" | ||
/> | ||
<button className="primary" type="submit"> | ||
Sign up | ||
</button> | ||
</form> | ||
</> | ||
)} | ||
</div> | ||
</div> | ||
</div> | ||
|