fix(fe/login): refine login dialog
This commit is contained in:
parent
55ba21b4a5
commit
b1accfdbee
2 changed files with 93 additions and 47 deletions
|
@ -85,9 +85,56 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.theme-default #pane-login {
|
.theme-default #pane-login {
|
||||||
|
max-width: 48rem;
|
||||||
padding: 2rem;
|
padding: 2rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.theme-default #pane-login #title {
|
||||||
|
font-size: 2rem;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.theme-default #pane-login .login-container {
|
||||||
|
margin: 2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.theme-default #pane-login .input-wrap {
|
||||||
|
width: 100%;
|
||||||
|
background-color: #eaebf6;
|
||||||
|
margin: 2rem 0 0 0;
|
||||||
|
border-radius: 0.6rem;
|
||||||
|
line-height: 4rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.theme-default #pane-login #captcha-input {
|
||||||
|
width: calc(100% - 1rem);
|
||||||
|
}
|
||||||
|
|
||||||
|
.theme-default #pane-login #captcha {
|
||||||
|
width: calc(100% - 1rem);
|
||||||
|
background-color: #eaebf6;
|
||||||
|
border: solid 1px #eaebf6;
|
||||||
|
margin: 2rem 0 0 0;
|
||||||
|
border-radius: 0.6rem;
|
||||||
|
height: 3.8rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.theme-default #pane-login input {
|
||||||
|
width: 100%;
|
||||||
|
padding: 0;
|
||||||
|
border: none;
|
||||||
|
margin: 0 1rem;
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
.theme-default #btn-login {
|
||||||
|
background-color: #1abc9c;
|
||||||
|
color: #fff;
|
||||||
|
width: 100%;
|
||||||
|
margin-top: 2rem;
|
||||||
|
height: 4rem;
|
||||||
|
}
|
||||||
|
|
||||||
.theme-default #breadcrumb {
|
.theme-default #breadcrumb {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
@ -124,8 +171,8 @@
|
||||||
color: #34495e;
|
color: #34495e;
|
||||||
background-color: white;
|
background-color: white;
|
||||||
border-radius: 0.8rem;
|
border-radius: 0.8rem;
|
||||||
margin-bottom: 2rem;
|
|
||||||
box-shadow: 0 5px 30px 0 rgb(31 38 135 / 10%);
|
box-shadow: 0 5px 30px 0 rgb(31 38 135 / 10%);
|
||||||
|
margin: auto auto 2rem auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.container-padding {
|
.container-padding {
|
||||||
|
@ -438,11 +485,6 @@
|
||||||
color: #7f8c8d;
|
color: #7f8c8d;
|
||||||
}
|
}
|
||||||
|
|
||||||
.theme-default #btn-login {
|
|
||||||
background-color: #1abc9c;
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.theme-default .pane-title {
|
.theme-default .pane-title {
|
||||||
color: black;
|
color: black;
|
||||||
font-size: 1.6rem;
|
font-size: 1.6rem;
|
||||||
|
@ -498,7 +540,7 @@
|
||||||
right: 0;
|
right: 0;
|
||||||
top: 0;
|
top: 0;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
background-color: rgba(0, 0, 0, 0.5);
|
background: url("/static/img/textured_paper.png") repeat fixed center;
|
||||||
overflow: scroll;
|
overflow: scroll;
|
||||||
z-index: 100;
|
z-index: 100;
|
||||||
}
|
}
|
||||||
|
@ -546,13 +588,6 @@
|
||||||
/* margin: 0.5rem 0 1rem 0; */
|
/* margin: 0.5rem 0 1rem 0; */
|
||||||
}
|
}
|
||||||
|
|
||||||
.captcha {
|
|
||||||
width: 14rem;
|
|
||||||
height: 3rem;
|
|
||||||
border: solid 1px #95a5a6;
|
|
||||||
border-radius: 0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.theme-default .h1,
|
.theme-default .h1,
|
||||||
.theme-default .h2 {
|
.theme-default .h2 {
|
||||||
font-size: 2rem;
|
font-size: 2rem;
|
||||||
|
|
|
@ -110,10 +110,19 @@ export class AuthPane extends React.Component<Props, State, {}> {
|
||||||
className="container"
|
className="container"
|
||||||
style={{ display: this.props.login.authed ? "none" : "block" }}
|
style={{ display: this.props.login.authed ? "none" : "block" }}
|
||||||
>
|
>
|
||||||
<span className="float-input">
|
<div className="login-container">
|
||||||
<div className="label">
|
<a
|
||||||
{this.props.msg.pkg.get("login.username")}
|
href="https://github.com/ihexxa/quickshare"
|
||||||
</div>
|
target="_blank"
|
||||||
|
className="h5"
|
||||||
|
id="title"
|
||||||
|
>
|
||||||
|
Quickshare
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<div className="hr"></div>
|
||||||
|
|
||||||
|
<div className="input-wrap">
|
||||||
<input
|
<input
|
||||||
name="user"
|
name="user"
|
||||||
type="text"
|
type="text"
|
||||||
|
@ -121,10 +130,9 @@ export class AuthPane extends React.Component<Props, State, {}> {
|
||||||
value={this.state.user}
|
value={this.state.user}
|
||||||
placeholder={this.props.msg.pkg.get("login.username")}
|
placeholder={this.props.msg.pkg.get("login.username")}
|
||||||
/>
|
/>
|
||||||
</span>
|
</div>
|
||||||
|
|
||||||
<span className="float-input">
|
<div className="input-wrap">
|
||||||
<div className="label">{this.props.msg.pkg.get("login.pwd")}</div>
|
|
||||||
<input
|
<input
|
||||||
name="pwd"
|
name="pwd"
|
||||||
type="password"
|
type="password"
|
||||||
|
@ -132,33 +140,36 @@ export class AuthPane extends React.Component<Props, State, {}> {
|
||||||
value={this.state.pwd}
|
value={this.state.pwd}
|
||||||
placeholder={this.props.msg.pkg.get("login.pwd")}
|
placeholder={this.props.msg.pkg.get("login.pwd")}
|
||||||
/>
|
/>
|
||||||
</span>
|
</div>
|
||||||
|
|
||||||
<span className="float-input">
|
|
||||||
<div className="label">{this.props.msg.pkg.get("login.captcha")}</div>
|
|
||||||
<Flexbox
|
<Flexbox
|
||||||
children={List([
|
children={List([
|
||||||
|
<div className="input-wrap">
|
||||||
<input
|
<input
|
||||||
name="captcha"
|
id="captcha-input"
|
||||||
type="text"
|
type="text"
|
||||||
onChange={this.changeCaptcha}
|
onChange={this.changeCaptcha}
|
||||||
value={this.state.captchaInput}
|
value={this.state.captchaInput}
|
||||||
placeholder={this.props.msg.pkg.get("login.captcha")}
|
placeholder={this.props.msg.pkg.get("login.captcha")}
|
||||||
/>,
|
/>
|
||||||
|
</div>,
|
||||||
<img
|
<img
|
||||||
|
id="captcha"
|
||||||
src={`/v1/captchas/imgs?capid=${this.props.login.captchaID}`}
|
src={`/v1/captchas/imgs?capid=${this.props.login.captchaID}`}
|
||||||
className="captcha"
|
className="captcha"
|
||||||
onClick={this.refreshCaptcha}
|
onClick={this.refreshCaptcha}
|
||||||
/>,
|
/>,
|
||||||
])}
|
])}
|
||||||
|
childrenStyles={List([
|
||||||
|
{ justifyContent: "flex-start" },
|
||||||
|
{ justifyContent: "flex-end" },
|
||||||
|
])}
|
||||||
/>
|
/>
|
||||||
</span>
|
|
||||||
|
|
||||||
<span className="float-input">
|
|
||||||
<button id="btn-login" onClick={this.login}>
|
<button id="btn-login" onClick={this.login}>
|
||||||
{this.props.msg.pkg.get("login.login")}
|
{this.props.msg.pkg.get("login.login")}
|
||||||
</button>
|
</button>
|
||||||
</span>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue