mirror of
https://github.com/embarklabs/embark.git
synced 2025-01-12 14:54:57 +00:00
Merge pull request #1035 from embark-framework/chore/disable-autocomplete-login
Disable autocomplete in Login component and fix indentation
This commit is contained in:
commit
c3ae7d608f
@ -4,12 +4,12 @@ import logo from '../images/logo-new.svg';
|
||||
import './Login.css';
|
||||
|
||||
class Login extends React.Component {
|
||||
constructor(props){
|
||||
constructor(props) {
|
||||
super(props);
|
||||
this.state = props.credentials;
|
||||
}
|
||||
|
||||
handleChange(event){
|
||||
handleChange(event) {
|
||||
this.setState({[event.target.name]: event.target.value});
|
||||
}
|
||||
|
||||
@ -47,8 +47,11 @@ class Login extends React.Component {
|
||||
name="token"
|
||||
placeholder="Enter token"
|
||||
onChange={(e) => this.handleChange(e)}
|
||||
autoComplete="off"
|
||||
value={this.state.token}/>
|
||||
<small className="form-text text-muted">Execute <code>embark run</code> in the command line to get your token.</small>
|
||||
<small className="form-text text-muted">Execute <code>embark run</code> in the command line to get
|
||||
your token.
|
||||
</small>
|
||||
</div>
|
||||
<button type="submit" className="btn btn-pill btn-dark">Enter Cockpit</button>
|
||||
</form>
|
||||
|
Loading…
x
Reference in New Issue
Block a user