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

View Password feature #74

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all 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
135 changes: 88 additions & 47 deletions client/src/pages/SignUpForm.js
Original file line number Diff line number Diff line change
@@ -1,67 +1,108 @@
import React, { Component } from 'react';
import { Link } from 'react-router-dom';
import IconButton from '@material-ui/core/IconButton';
import VisibilityOffIcon from '@material-ui/icons/VisibilityOff';
import VisibilityIcon from '@material-ui/icons/Visibility';


class SignUpForm extends Component {
constructor() {
super();
constructor() {
super();

this.state = {
email: '',
password: '',
name: '',
hasAgreed: false
};
this.state = {
email: '',
password: '',
name: '',
hasAgreed: false,
disabledButtonColor: '#9fcfff',
disabledTextColor: '#808080',
type: 'password',
Icon: <VisibilityOffIcon />
};

this.handleChange = this.handleChange.bind(this);
this.handleSubmit = this.handleSubmit.bind(this);
}
this.handleChange = this.handleChange.bind(this);
this.handleSubmit = this.handleSubmit.bind(this);
}

handleChange(e) {
let target = e.target;
let value = target.type === 'checkbox' ? target.checked : target.value;
let name = target.name;
handleChange(e) {
let target = e.target;
let value = target.type === 'checkbox' ? target.checked : target.value;
let name = target.name;

this.setState({
[name]: value
});
}
this.setState({
[name]: value
});
}

handleClick = () => this.setState(({ type }) => ({
Icon: type === 'text' ? <VisibilityOffIcon /> : <VisibilityIcon />,
type: type === 'text' ? 'password' : 'text'

}))

handleSubmit(e) {
e.preventDefault();
handleSubmit(e) {
e.preventDefault();

console.log('The form was submitted with the following data:');
console.log(this.state);
console.log('The form was submitted with the following data:');
console.log(this.state);
}

render() {

let content = null;
if (this.state.email.length && this.state.password.length && this.state.name.length && this.state.hasAgreed) {
content = <button className="FormField__Button mr-20"
onClick={() => { console.log(this.state.isValid) }}
>Sign Up</button>
}
else {
content = <button className="FormField__Button mr-20"
style={
{
backgroundColor: this.state.disabledButtonColor,
color: this.state.disabledTextColor
}
}
disabled
>Sign Up</button>
}

render() {
return (
return (
<div className="container">
<div className="FormCenter">
<form onSubmit={this.handleSubmit} className="FormFields">
<div className="FormField">
<label className="FormField__Label" htmlFor="name">Full Name</label>
<input type="text" id="name" className="FormField__Input" placeholder="Enter your full name" name="name" value={this.state.name} onChange={this.handleChange} />
</div>
<form onSubmit={this.handleSubmit} className="FormFields">
<div className="FormField">
<label className="FormField__Label" htmlFor="name">Full Name</label>
<input type="text" id="name" className="FormField__Input" placeholder="Enter your full name" name="name" value={this.state.name} onChange={this.handleChange} />
</div>
<div style={{ flexDirection: 'row', display: 'flex' }}>
<div className="FormField">
<label className="FormField__Label" htmlFor="password">Password</label>
<input type="password" id="password" className="FormField__Input" placeholder="Enter your password" name="password" value={this.state.password} onChange={this.handleChange} />
</div>
<div className="FormField">
<label className="FormField__Label" htmlFor="email">E-Mail Address</label>
<input type="email" id="email" className="FormField__Input" placeholder="Enter your email" name="email" value={this.state.email} onChange={this.handleChange} />
<input type="password" id="password" className="FormField__Input" placeholder="Enter your password" name="password" value={this.state.password} onChange={this.handleChange} type={this.state.type} />
</div>
<IconButton aria-label="info" onClick={this.handleClick}>
{this.state.Icon}
</IconButton>
</div>
<div className="FormField">
<label className="FormField__Label" htmlFor="email">E-Mail Address</label>
<input type="email" id="email" className="FormField__Input" placeholder="Enter your email" name="email" value={this.state.email} onChange={this.handleChange} />
</div>

<div className="FormField">
<label className="FormField__CheckboxLabel">
<input className="FormField__Checkbox" type="checkbox" name="hasAgreed" value={this.state.hasAgreed} onChange={this.handleChange} /> I agree all statements in <a href="" className="FormField__TermsLink">terms of service</a>
</label>
</div>
<div className="FormField">
<label className="FormField__CheckboxLabel">
<input className="FormField__Checkbox" type="checkbox" name="hasAgreed" value={this.state.hasAgreed} onChange={this.handleChange} /> I agree all statements in <a href="" className="FormField__TermsLink">terms of service</a>
</label>
</div>

<div className="FormField">
<button className="FormField__Button mr-20">Sign Up</button> <Link to="/sign-in" className="FormField__Link">I'm already member</Link>
</div>
</form>
</div>
);
}
<div className="FormField">
{content}
<Link to="/sign-in" className="FormField__Link">I'm already member</Link>
</div>
</form>
</div>
</div>
);
}
}
export default SignUpForm;