Skip to content

Commit

Permalink
Merge pull request #29 from JAVACAFE-STUDY/develop
Browse files Browse the repository at this point in the history
Develop to Master 머지
  • Loading branch information
rygh4775 authored Jul 27, 2019
2 parents 3fabe8e + 1243a9e commit 97a2786
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chainity-ladning",
"version": "0.6.0",
"version": "0.8.0",
"description": "Chainity welcome pages",
"private": true,
"main": "dist/index.js",
Expand Down
3 changes: 2 additions & 1 deletion src/assets/jss/material-kit-react/views/loginPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ const signupPageStyle = {
"& footer": {
position: "absolute",
bottom: "0",
width: "100%"
width: "100%",
zIndex: 1
}
},
form: {
Expand Down
6 changes: 4 additions & 2 deletions src/views/LoginPage/LoginPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class LoginPage extends React.Component {
super(props);
this.state = {
cardAnimaton: "cardHidden",
id: "",
email: "",
password: ""
};
this.inputUserInfo = this.inputUserInfo.bind(this);
Expand All @@ -54,7 +54,7 @@ class LoginPage extends React.Component {
inputUserInfo(e) {
this.setState({
...this.state,
[e.currentTarget.id]: e.currentTarget.value
[e.currentTarget.id]: e.currentTarget.value.replace(/\s/g, "")
});
}

Expand Down Expand Up @@ -115,6 +115,7 @@ class LoginPage extends React.Component {
fullWidth: true
}}
inputProps={{
value: this.state.email,
type: "text",
required: true,
endAdornment: (
Expand All @@ -132,6 +133,7 @@ class LoginPage extends React.Component {
fullWidth: true
}}
inputProps={{
value: this.state.password,
type: "password",
required: true,
endAdornment: (
Expand Down

0 comments on commit 97a2786

Please sign in to comment.