diff --git a/ShadowEditor.Web/src/editor/system/LoginWindow.jsx b/ShadowEditor.Web/src/editor/system/LoginWindow.jsx index aa838cfb..db246f7c 100644 --- a/ShadowEditor.Web/src/editor/system/LoginWindow.jsx +++ b/ShadowEditor.Web/src/editor/system/LoginWindow.jsx @@ -35,6 +35,7 @@ class LoginWindow extends React.Component { + diff --git a/ShadowEditor.Web/src/editor/system/css/LoginWindow.css b/ShadowEditor.Web/src/editor/system/css/LoginWindow.css index e69de29b..ece4d281 100644 --- a/ShadowEditor.Web/src/editor/system/css/LoginWindow.css +++ b/ShadowEditor.Web/src/editor/system/css/LoginWindow.css @@ -0,0 +1,5 @@ +.Window.Login>.wrap>.content>.Form>.FormControl>.fake{ + position: absolute; + left: -10000px; + top: -10000px; +} \ No newline at end of file diff --git a/ShadowEditor.Web/src/ui/form/Input.jsx b/ShadowEditor.Web/src/ui/form/Input.jsx index bd02536e..5b65ac8e 100644 --- a/ShadowEditor.Web/src/ui/form/Input.jsx +++ b/ShadowEditor.Web/src/ui/form/Input.jsx @@ -29,7 +29,7 @@ class Input extends React.Component { max={max} step={step} disabled={disabled} - autoComplete={'new-password'} + autoComplete={'off'} onFocus={this.handleFocus} onChange={this.handleChange} onInput={this.handleInput}