Skip to content
This repository has been archived by the owner on Mar 13, 2021. It is now read-only.

Commit

Permalink
Merge pull request #11 from M4MController/password-input
Browse files Browse the repository at this point in the history
Change type of password input
  • Loading branch information
JohnKeats97 authored Jun 24, 2020
2 parents 9845539 + 25d1d71 commit 6f7b80d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Login/Login.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export class Login extends React.Component {
<div className="login__container">
<div className="login__title">Добро пожаловать</div>
<input value={name} onChange={this.onNameChange.bind(this)} placeholder={'Кампания'} className="login__elem"/>
<input value={password} onChange={this.onPasswordChange.bind(this)} placeholder={'Пароль'} className="login__elem"/>
<input value={password} onChange={this.onPasswordChange.bind(this)} placeholder={'Пароль'} className="login__elem" type="password"/>
<button
className="login__elem"
onClick={this.onLogin.bind(this)}
Expand Down

0 comments on commit 6f7b80d

Please sign in to comment.