#
vincentlu
2025-02-07 8ce648d94a39a89755e1e6174344a42ea1568176
#
5个文件已修改
14 ■■■■■ 已修改文件
rsf-admin/src/i18n/en.js 2 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
rsf-admin/src/i18n/zh.js 2 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
rsf-admin/src/page/login/Login.jsx 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
rsf-admin/src/page/login/Register.jsx 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
rsf-admin/src/page/login/index.jsx 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
rsf-admin/src/i18n/en.js
@@ -221,6 +221,8 @@
    },
    page: {
        login: {
            title: 'Welcome',
            footer: 'Footer Goes Here',
            tenant: 'Company',
            confirmPwd: 'Confirm Password',
            button: {
rsf-admin/src/i18n/zh.js
@@ -221,6 +221,8 @@
    },
    page: {
        login: {
            title: 'Welcome',
            footer: 'Footer Goes Here',
            tenant: '公司',
            confirmPwd: '确认密码',
            button: {
rsf-admin/src/page/login/Login.jsx
@@ -163,7 +163,7 @@
                        )}
                    />
                    <Box mt={10}></Box>
                    <Box />
                    <Button
                        type="submit"
rsf-admin/src/page/login/Register.jsx
@@ -191,7 +191,7 @@
                        )}
                    />
                    <Box mt={10}></Box>
                    <Box />
                    <Button
                        type="submit"
rsf-admin/src/page/login/index.jsx
@@ -82,7 +82,7 @@
                <div>
                    <AppBar position="static" sx={{ backgroundColor: '#3D4BA7' }}>
                        <Toolbar>
                            <Typography variant="h6" color="inherit">Welcome</Typography>
                            <Typography variant="h6" color="inherit">{translate("page.login.title")}</Typography>
                        </Toolbar>
                    </AppBar>
                </div>
@@ -103,8 +103,8 @@
                {tab === 0 && <Login tenantList={tenantList} />}
                {tab === 1 && <Register tenantList={tenantList} />}
                <Box mt={1} mb={1} sx={{ textAlign: 'center' }}>
                    <Typography variant="caption" align="center">Footer Goes Here</Typography>
                <Box mb={1} sx={{ textAlign: 'center' }}>
                    <Typography variant="caption" align="center">{translate("page.login.footer")}</Typography>
                </Box>
            </Card>
        </Box >