// 统一手机号授权码登录的表单 import SmsLoginForm from './sms'; // 其余第三方登录的表单 import OtherAuthGroup from './otherAuth'; // 统一账户密码登录表单 import PwdLoginForm from './pwd'; // C端注册手机号表单 import RegisterByPhoneForm from './registerByPhone'; // C端注册邮箱表单 import RegisterByEmailForm from './registerByEmail'; // B端注册账户表单 import RegisterByBusinessForm from './registerByBusiness'; // 添加机构信息表单 import BindOrgInfoForm from './bindOrgInfo'; // 设置密码的表单 import SettingPwdForm from './settingPwd'; // 合并手机号 import BindPhoneByTokenForm from './bindPhoneByToken'; export { SmsLoginForm, OtherAuthGroup, PwdLoginForm, RegisterByPhoneForm, RegisterByEmailForm, RegisterByBusinessForm, SettingPwdForm, BindPhoneByTokenForm, BindOrgInfoForm, };