Improve forget page CSS.

This commit is contained in:
Gucheng Wang 2021-11-28 14:11:09 +08:00
parent bfd5d0172a
commit 7923bffa6d
2 changed files with 48 additions and 30 deletions

View File

@ -495,46 +495,61 @@ class ForgetPage extends React.Component {
}
return (
<React.Fragment>
<Divider style={{ fontSize: "28px" }}>
{i18next.t("forget:Retrieve password")}
</Divider>
<Row>
<Col span={24} style={{justifyContent: "center"}}>
<Row>
<Col span={24} style={{ display: "flex", justifyContent: "center" }}>
<Col span={24}>
<div style={{marginTop: "80px", marginBottom: "10px", textAlign: "center"}}>
{
Setting.renderHelmet(application)
}
<CustomGithubCorner />
{
Setting.renderLogo(application)
}
</div>
</Col>
</Row>
<Row>
<Col span={24}>
<div style={{textAlign: "center", fontSize: "28px"}}>
{i18next.t("forget:Retrieve password")}
</div>
</Col>
</Row>
<Row>
<Col span={24}>
<Steps
current={this.state.current}
style={{
width: "90%",
maxWidth: "500px",
margin: "auto",
marginTop: "80px",
}}
current={this.state.current}
style={{
width: "90%",
maxWidth: "500px",
margin: "auto",
marginTop: "80px",
}}
>
<Step
title={i18next.t("forget:Account")}
icon={<UserOutlined />}
title={i18next.t("forget:Account")}
icon={<UserOutlined />}
/>
<Step
title={i18next.t("forget:Verify")}
icon={<SolutionOutlined />}
title={i18next.t("forget:Verify")}
icon={<SolutionOutlined />}
/>
<Step
title={i18next.t("forget:Reset")}
icon={<KeyOutlined />}
title={i18next.t("forget:Reset")}
icon={<KeyOutlined />}
/>
</Steps>
</Col>
</Row>
<Row>
<Col span={24} style={{ display: "flex", justifyContent: "center" }}>
<div style={{ marginTop: "10px", textAlign: "center" }}>
{Setting.renderHelmet(application)}
{this.renderForm(application)}
</div>
</Col>
</Row>
<CustomGithubCorner />
</React.Fragment>
</Col>
<Col span={24} style={{ display: "flex", justifyContent: "center" }}>
<div style={{ marginTop: "10px", textAlign: "center" }}>
{this.renderForm(application)}
</div>
</Col>
</Row>
);
}
}

View File

@ -137,11 +137,14 @@ export const CountDownInput = (props) => {
visible={visible}
okText={i18next.t("user:OK")}
cancelText={i18next.t("user:Cancel")}
onCancel={handleCancel}
onOk={handleOk}
onCancel={handleCancel}
okButtonProps={{disabled: key.length !== 5}}
width={248}
>
{renderCheck()}
{
renderCheck()
}
</Modal>
</div>
);