完成手机号登录界面
parent
13a775ff45
commit
b2f1919c9d
@ -0,0 +1,49 @@
|
||||
# Geetest Captcha
|
||||
geetestCaptchaLangCode=en
|
||||
|
||||
# Phone number login
|
||||
phoneNumber=Phone Number
|
||||
phoneNumberVerified=Phone Number Verified
|
||||
loginByUsername=Login with Username
|
||||
loginByPhone=Login with SMS Code
|
||||
registerByEmail=Register with Email
|
||||
registerByPhone=Register with SMS Code
|
||||
resetPasswordByEmail=Email Verification
|
||||
resetPasswordByPhone=SMS Verification
|
||||
smsVerificationCode=SMS Verification Code
|
||||
phoneAreaCountryNameLangCode=en
|
||||
sendSmsBtn=Send
|
||||
resendSmsBtn=Resend Verification Code
|
||||
sendSmsError=Error
|
||||
captchaLoadError=Failed to load captcha, please refresh and try again
|
||||
captchaCodeApiError=Failed to get captcha parameters, please refresh and try again
|
||||
smsSending=Sending...
|
||||
second=seconds
|
||||
errorPhoneNumberIsEmpty=Please enter your phone number
|
||||
errorSendSmsCodeInternalError=Unable to send SMS verification code, please contact the website administrator
|
||||
errorPhoneAreaNotSupported=This area code is not currently supported, please use email registration instead
|
||||
errorCaptchaRequired=Please complete the human verification
|
||||
errorCannotGetConfig=Unable to get verification code configuration, please refresh and try again
|
||||
errorUserNotFound=No user found for this phone number
|
||||
errorSendVerificationError=Error sending SMS verification code: {0}
|
||||
|
||||
geetestCaptchaLangCode=en
|
||||
|
||||
# IDP Remember Password
|
||||
loginSuccessTitle=Login Successful
|
||||
shouldRememberMe=Keep me logged in on this device?
|
||||
shouldRememberMeWarning=Do not stay logged in on public computers
|
||||
|
||||
# Custom Properties
|
||||
nickName=Nickname
|
||||
optional=Optional
|
||||
|
||||
# Tips
|
||||
usernameWillPublicWarning=Your username will be displayed publicly, please protect your privacy
|
||||
|
||||
# Logout
|
||||
frontchannel-logout.title=Logout
|
||||
frontchannel-logout.message=You are logging out of the following applications
|
||||
logoutConfirmTitle=Logout
|
||||
logoutConfirmHeader=Are you sure you want to logout?
|
||||
doLogout=Logout
|
||||
@ -0,0 +1,47 @@
|
||||
# 极验
|
||||
geetestCaptchaLangCode=zh-cn
|
||||
|
||||
# 手机号登录新增
|
||||
phoneNumber=手机号
|
||||
phoneNumberVerified=手机号已验证
|
||||
loginByUsername=账号密码登录
|
||||
loginByPhone=短信验证码登录
|
||||
registerByEmail=电子邮箱注册
|
||||
registerByPhone=短信验证码注册
|
||||
resetPasswordByEmail=电子邮箱验证
|
||||
resetPasswordByPhone=短信验证
|
||||
smsVerificationCode=短信验证码
|
||||
phoneAreaCountryNameLangCode=zh-cn
|
||||
sendSmsBtn=发送
|
||||
resendSmsBtn=重新发送验证码
|
||||
sendSmsError=错误
|
||||
captchaLoadError=验证码加载失败,请刷新页面重试
|
||||
captchaCodeApiError=获取验证码参数失败,请刷新页面重试
|
||||
smsSending=发送中...
|
||||
second=秒
|
||||
errorPhoneNumberIsEmpty=请输入手机号
|
||||
errorSendSmsCodeInternalError=无法发送短信验证码,请联系网站管理员
|
||||
errorPhoneAreaNotSupported=该地区号码暂不支持,请使用邮箱注册
|
||||
errorCaptchaRequired=请通过人机验证
|
||||
errorCannotGetConfig=无法获取验证码配置,请刷新页面重试
|
||||
errorUserNotFound=没有找到该手机号对应的用户
|
||||
errorSendVerificationError=发送短信验证码出错: {0}
|
||||
|
||||
# IDP记住密码
|
||||
loginSuccessTitle=登录成功
|
||||
shouldRememberMe=是否在此设备上保持登录状态?
|
||||
shouldRememberMeWarning=请勿在公用电脑上保持登录状态
|
||||
|
||||
# 自定义属性
|
||||
nickName=昵称
|
||||
optional=可选
|
||||
|
||||
# 提示
|
||||
usernameWillPublicWarning=用户名将会公开显示,请注意保护您的隐私
|
||||
|
||||
# 登出
|
||||
frontchannel-logout.title=登出
|
||||
frontchannel-logout.message=您正在登出以下应用
|
||||
logoutConfirmTitle=登出
|
||||
logoutConfirmHeader=你确定要登出吗?
|
||||
doLogout=登出
|
||||
@ -0,0 +1,43 @@
|
||||
.areaCodeInputContainer .choices {
|
||||
width: 4.5em;
|
||||
text-overflow: clip;
|
||||
grid-column: 1 / -1;
|
||||
grid-row: 1 / 2;
|
||||
}
|
||||
|
||||
.areaCodeInputContainer .choices[data-type*=select-one]::after {
|
||||
border-color: var(--pf-v5-global--Color--100) transparent transparent transparent !important;
|
||||
}
|
||||
|
||||
.areaCodeInputContainer .choices .choices__inner {
|
||||
background-color: transparent;
|
||||
border: none;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.areaCodeInputContainer .choices__list--dropdown, .choices__list[aria-expanded] {
|
||||
margin-top: 0 !important;
|
||||
color: var(--pf-v5-global--Color--100) !important;
|
||||
|
||||
--pf-v5-c-menu--BackgroundColor: var(--pf-v5-global--BackgroundColor--100);
|
||||
--pf-v5-c-menu--BoxShadow: var(--pf-v5-global--BoxShadow--md);
|
||||
--pf-v5-c-menu__list-item--hover--BackgroundColor: var(--pf-v5-global--BackgroundColor--200);
|
||||
|
||||
background-color: var(--pf-v5-c-menu--BackgroundColor) !important;
|
||||
border: none !important;
|
||||
box-shadow: var(--pf-v5-c-menu--BoxShadow) !important;
|
||||
}
|
||||
|
||||
.areaCodeInputContainer .choices__list--dropdown .choices__item--selectable.is-highlighted,
|
||||
.choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
|
||||
background-color: var(--pf-v5-c-menu__list-item--hover--BackgroundColor) !important;
|
||||
}
|
||||
|
||||
.areaCodeInputContainer .choices__input {
|
||||
color: var(--pf-v5-global--Color--100) !important;
|
||||
background-color: transparent !important;
|
||||
}
|
||||
|
||||
.areaCodeInputContainer .choices[data-type*="select-one"] .choices__input {
|
||||
border-color: var(--pf-v5-global--BorderColor--200) !important;
|
||||
}
|
||||
Loading…
Reference in New Issue