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

Email address in homepage Developer Signup #242

Merged
merged 5 commits into from
Oct 20, 2021
Merged
Show file tree
Hide file tree
Changes from 2 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
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,5 @@ yarn-error.log*
.cache/
.yarnrc
yarn-error.log
.history
.history
package-lock.json
zrthxn marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react";
import { Grid, GridItem } from '@patternfly/react-core';
import { Grid, GridItem, TextInput } from '@patternfly/react-core';

import "./WelcomeDevelopers.css";
import Button from '../../../Button';
Expand Down Expand Up @@ -50,9 +50,16 @@ const WelcomeDevelopers = () => (
</GridItem>

<GridItem lg={6} lgOffset={3} xs={12}>
<Button toRoute='/quickstart'>
<Grid hasGutter id="call-to-action">
<GridItem lg={8}>
<TextInput type="email" aria-label="Email Address" id="email-address" placeholder="Email Address"/>
</GridItem>
ppk-1996 marked this conversation as resolved.
Show resolved Hide resolved
<GridItem lg={4}>
<Button variant="primary" toRoute='/quickstart'>
Sign Up
</Button>
</GridItem>
</Grid>
<p style={{ fontSize: 'small', margin: '1em auto' }}>
By siging-up you agree to the terms and privacy policy.
</p>
Expand Down