联系官方销售客服

1835022288

028-61286886

POSCMS 版主:POSCMS负责人
注册页面在其他页面调用时应该怎么写
类型:POSCMS 更新时间:2021-07-05 13:19:23

注册页面在其他页面调用时应该怎么写?

想做一个弹出层注册页面

新页面中

 {if @in_array('username', $regfield)}

这段无效,应该怎么写?



 {if @in_array('username', $regfield)}

        <div class="form-group">

            <label class="control-label visible-ie8 visible-ie9">会员名称</label>

            <input class="form-control form-control-solid placeholder-no-fix" type="text" autocomplete="off" placeholder="会员名称" name="data[username]" />

        </div>

        {/if}

        {if @in_array('phone', $regfield)}

        <div class="form-group">

            <label class="control-label visible-ie8 visible-ie9">手机号码</label>

            <input class="form-control form-control-solid placeholder-no-fix" type="text" autocomplete="off" placeholder="手机号码" name="data[phone]" />

        </div>

        {/if}

        {if @in_array('email', $regfield)}

        <div class="form-group">

            <label class="control-label visible-ie8 visible-ie9">安全邮箱</label>

            <input class="form-control form-control-solid placeholder-no-fix" type="text" autocomplete="off" placeholder="安全邮箱" name="data[email]" />

        </div>

        {/if}

        <div class="form-group">

            <label class="control-label visible-ie8 visible-ie9">登录密码</label>

            <input class="form-control form-control-solid placeholder-no-fix" type="password" autocomplete="off" placeholder="登录密码" name="data[password]" />

        </div>

        <div class="form-group">

            <label class="control-label visible-ie8 visible-ie9">确认密码</label>

            <input class="form-control form-control-solid placeholder-no-fix" type="password" autocomplete="off" placeholder="确认密码" name="data[password2]" />

        </div>

        {if $code}

        <div class="form-group">

            {if strlen(SYS_GEE_CAPTCHA_ID) > 10}

            {dr_geetest()}

            {else}

            <div class="col-sm-6" style="padding-left:0;padding-right:0">

                <input class="form-control form-control-solid placeholder-no-fix" type="text" autocomplete="off" placeholder="验证码" name="code" />

            </div>

            <div class="col-sm-6">

                <img align="absmiddle" id="dr_code_img" style="cursor:pointer;" onclick="this.src='{dr_member_url('api/captcha', array('width' => 120, 'height' => 40))}&'+Math.random();" src="{dr_member_url('api/captcha', array('width' => 120, 'height' => 40))}" />

            </div>

            {/if}

        </div>

        {/if}


回帖
  • #1楼    迅睿框架创始人
    2019-07-29 11:30:51
    Chrome 0
    {if @in_array('username', $regfield)}这种判断只能在注册页面使用,其他页面就无效的 {if $code}也无效其他基本上没问题,表单按钮提交地址需要赋值注册的url
  • 疾风
    #2楼    疾风
    2019-07-29 11:38:40
    Chrome 0
    回复迅睿框架创始人明白你的意思,可是我想知道应该怎么写?
  • #3楼    迅睿框架创始人
    2019-07-29 11:45:08
    Chrome 0
    只能写死
  • 疾风
    #4楼    疾风
    2019-07-29 11:47:47
    Chrome 0
    你的意思是把if判断去掉,直接写input框?回复迅睿框架创始人
  • 疾风
    #5楼    疾风
    2019-07-29 11:50:17
    Chrome 0
    相信有很多用户需要弹窗登录和弹窗注册功能,希望官方可以出一个标准的写法疾风
  • 九天网络(JiuDay)
    #6楼    九天网络(JiuDay)
    2019-07-29 14:03:25
    Chrome 0
    不是有教程吗??http://www.xunruicms.com/v3doc/2518.html
    满意答案
  • 疾风
    #7楼    疾风
    2019-07-29 14:21:54
    Chrome 0
    这个教程只是登录页面的,我需要的是注册页面,而且这个页面中的验证码是写死了,也就是说,页面中写了验证码验证,后台设置是否打开验证码就无效了,同理,注册页面中,后台设置的注册名,手机号,email都无效了,都要通过前台改代码来启用关闭这些功能了。九天网络(JiuDay)
  • 疾风
    #8楼    疾风
    2021-07-05 13:19:23
    Chrome 0
    @九天网络(JiuDay):谢谢帮助