-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #41 from ZFGCCP/feature/registration/reg-fix
registration fixes
- Loading branch information
Showing
4 changed files
with
55 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -85,4 +85,10 @@ $border-stroke: .2em; | |
} | ||
} | ||
} | ||
|
||
label{ | ||
&.green{ | ||
color: $green1; | ||
} | ||
} | ||
} |
36 changes: 36 additions & 0 deletions
36
src/components/registration/post-registration.component.js
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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
import React from 'react'; | ||
import ZfgcForm from './../forms/ZfgcForm.component.js'; | ||
import Collapsible from './../collapsible/collapsible.component.js'; | ||
import Button from 'react-bootstrap/Button'; | ||
import Form from 'react-bootstrap/Form'; | ||
import {Link} from "react-router-dom"; | ||
import { faCheckCircle } from "@fortawesome/free-solid-svg-icons"; | ||
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' | ||
|
||
class PostRegistration extends React.Component { | ||
componentDidMount(){ | ||
|
||
} | ||
|
||
render () { | ||
return ( | ||
<div className="justify-content-center d-flex"> | ||
<Collapsible> | ||
<div className="sign-in-form"> | ||
<form className="zfgc-form" onSubmit={this.handleSubmit}> | ||
<div className="d-flex flex-column"> | ||
<label className="green"><FontAwesomeIcon icon={faCheckCircle}/> You have successfully registered a new account. An activation email has been sent to you.</label> | ||
|
||
<Form.Group> | ||
<Button variant="secondary">Go Home</Button> | ||
</Form.Group> | ||
</div> | ||
</form> | ||
</div> | ||
</Collapsible> | ||
</div> | ||
) | ||
} | ||
} | ||
|
||
export default PostRegistration; |
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
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