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

Commit

Permalink
Change type of password input
Browse files Browse the repository at this point in the history
  • Loading branch information
ed-asriyan authored Jun 16, 2020
1 parent 9388fe0 commit 25d1d71
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 25d1d71

Please sign in to comment.