forked from Girl-Code-It/Opportunity-Calendar-Frontend
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into issue-217
- Loading branch information
Showing
20 changed files
with
323 additions
and
428 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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
|
||
name: Labeling new issue | ||
on: | ||
issues: | ||
types: ['opened'] | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: Renato66/auto-label@v2 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
ignore-comments: true | ||
labels-synonyms: '{"GSSOC21":["GSSOC","GSSOC21","gssoc21","Gssoc21"]}' |
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
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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
|
||
|
||
.card { | ||
display: flex; | ||
flex-direction: column; | ||
|
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
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
2 changes: 1 addition & 1 deletion
2
src/Components/PostOpportunity/sections/CodingComp/CodingComp.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
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
2 changes: 1 addition & 1 deletion
2
src/Components/PostOpportunity/sections/Internships/Internships.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
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
2 changes: 1 addition & 1 deletion
2
src/Components/PostOpportunity/sections/Scholarships/Scholarships.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
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
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 |
---|---|---|
@@ -1,71 +1,90 @@ | ||
import React, { useState } from 'react'; | ||
import styles from '../../CSS/SignupLogin.module.css'; | ||
import { Form, Card, Button, Row, InputGroup } from 'react-bootstrap'; | ||
import { Form, Card, Button, Row, InputGroup,Navbar } from 'react-bootstrap'; | ||
import { GoogleLogin } from 'react-google-login'; | ||
import { BsEye, BsEyeSlash } from "react-icons/bs"; | ||
import { BsEye, BsEyeSlash } from 'react-icons/bs'; | ||
|
||
const SignUp = () => { | ||
const [showPassword, setShowPassword] = useState(false); | ||
const handleShowPassword = () => setShowPassword(prevShowPassword => !prevShowPassword); | ||
const handleShowPassword = () => | ||
setShowPassword((prevShowPassword) => !prevShowPassword); | ||
|
||
return ( | ||
<Row className="justify-content-md-center"> | ||
<Card className={styles.card}> | ||
<h5>Sign Up</h5> | ||
<small className="text-muted"> | ||
Please fill this form to create your account. | ||
</small> | ||
<Form> | ||
<Form.Group controlId="fname"> | ||
<Form.Label>First Name</Form.Label> | ||
<Form.Control type="text" placeholder="First Name" /> | ||
</Form.Group> | ||
<div> | ||
<Navbar bg="light" expand="lg" className={styles.NavBar}> | ||
<Navbar.Brand className={styles.Logo}> | ||
<a href="/" className={styles.Brand} style={{ fontSize: '35px',color: '#000000' }}> | ||
Girl | ||
<span style={{ color: '#008DC8' }}> Code </span> | ||
It | ||
</a> | ||
</Navbar.Brand> | ||
</Navbar> | ||
|
||
<Form.Group controlId="lname"> | ||
<Form.Label>Last Name</Form.Label> | ||
<Form.Control type="text" placeholder="Last Name" /> | ||
</Form.Group> | ||
<Row className="d-flex justify-content-center"> | ||
<Card className={styles.card}> | ||
<h5>Sign Up</h5> | ||
<small className="text-muted"> | ||
Please fill this form to create your account. | ||
</small> | ||
<Form> | ||
<Form.Group controlId="fname"> | ||
<Form.Label>First Name</Form.Label> | ||
<Form.Control type="text" placeholder="First Name" /> | ||
</Form.Group> | ||
|
||
<Form.Group controlId="email"> | ||
<Form.Label>Email</Form.Label> | ||
<Form.Control type="email" placeholder="[email protected]" /> | ||
</Form.Group> | ||
<Form.Group controlId="lname"> | ||
<Form.Label>Last Name</Form.Label> | ||
<Form.Control type="text" placeholder="Last Name" /> | ||
</Form.Group> | ||
|
||
<Form.Group controlId="passWord"> | ||
<Form.Label>Password</Form.Label> | ||
<InputGroup> | ||
<Form.Control type={showPassword ? 'text' : 'password'} placeholder="Password" /> | ||
<InputGroup.Append className={styles.reactIcons} onClick={handleShowPassword}> | ||
<InputGroup.Text> | ||
{showPassword ? <BsEyeSlash /> : <BsEye />} | ||
</InputGroup.Text> | ||
</InputGroup.Append> | ||
</InputGroup> | ||
</Form.Group> | ||
<Form.Group controlId="email"> | ||
<Form.Label>Email</Form.Label> | ||
<Form.Control type="email" placeholder="[email protected]" /> | ||
</Form.Group> | ||
|
||
<Form.Group controlId="c_passWord"> | ||
<Form.Label>Confirm Password</Form.Label> | ||
<Form.Control type="password" placeholder="Confirm Password" /> | ||
</Form.Group> | ||
<Form.Group controlId="passWord"> | ||
<Form.Label>Password</Form.Label> | ||
<InputGroup> | ||
<Form.Control | ||
type={showPassword ? 'text' : 'password'} | ||
placeholder="Password" | ||
/> | ||
<InputGroup.Append | ||
className={styles.reactIcons} | ||
onClick={handleShowPassword} | ||
> | ||
<InputGroup.Text> | ||
{showPassword ? <BsEyeSlash /> : <BsEye />} | ||
</InputGroup.Text> | ||
</InputGroup.Append> | ||
</InputGroup> | ||
</Form.Group> | ||
|
||
<input type="checkbox" /> | ||
<Form.Group controlId="c_passWord"> | ||
<Form.Label>Confirm Password</Form.Label> | ||
<Form.Control type="password" placeholder="Confirm Password" /> | ||
</Form.Group> | ||
|
||
<small style={{ paddingLeft: 10 }}> | ||
I accept the | ||
<a href="#"> Terms and Conditions </a>&{' '} | ||
<a href="#">Privacy Policy</a> | ||
</small> | ||
</Form> | ||
<Button size="md" className={styles.button}> | ||
Sign Up | ||
</Button> | ||
<p>OR</p> | ||
<GoogleLogin buttonText="Sign in with Google" /> | ||
<p> | ||
Already have an Account? <a href="/login">Login</a> | ||
</p> | ||
</Card> | ||
</Row> | ||
<input type="checkbox" /> | ||
|
||
<small style={{ paddingLeft: 10 }}> | ||
I accept the | ||
<a href="#"> Terms and Conditions </a>&{' '} | ||
<a href="#">Privacy Policy</a> | ||
</small> | ||
</Form> | ||
<Button size="md" className={styles.button}> | ||
Sign Up | ||
</Button> | ||
<p>OR</p> | ||
<GoogleLogin buttonText="Sign in with Google" /> | ||
<p> | ||
Already have an Account? <a href="/login">Login</a> | ||
</p> | ||
</Card> | ||
</Row> | ||
</div> | ||
); | ||
}; | ||
|
||
|
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
Oops, something went wrong.