引导模式onclick关闭

时间:2019-01-16 06:13:30

标签: laravel forms

我有表格可以在模式内提交登录。它不允许我输入电子邮件和密码。当我单击表单元素时,它正在关闭。我在这里做什么错了。应该输入电子邮件和密码来提交

表单模式

    <div id="click_signin" class="modal  New-Bouncing-popup" role="dialog">
        <div class="modal-dialog bounce animated modal-ku">
            <!-- Modal content-->
            <div class="modal-content1">
                <div class="modal-header">
                    <button type="button" class="close" data-dismiss="modal">×</button>
                </div>
                <div class="modal-body row">

                    <div class="col-sm-6 left-side">
                        <h1>Surplus<br>Forex.</h1>
                        <p>Build your profitable forex career.</p>
                        <br>
                        <p>Login with social media</p>
                        <a class="fb" href="#" target="_blank">Login With Facebook</a>
                        <a class="tw" href="#" target="_blank">Login With Twitter</a>

                    </div><!--col-sm-6-->

                    <div class="col-sm-6 right-side">
                        <h1>Login</h1>
                        <p>Fill the below given fields to Login</p>
                        <br/>
                        <!--Form with header-->
                        <div class="form">


                            <div class="form-group">
                                <label for="form2">Your email</label>
                                <input type="text" id="form2" class="form-control">

                            </div>

                            <div class="form-group">
                                <label for="form4">Your password</label>
                                <input type="password" id="form4" class="form-control">

                            </div>

                            <div class="text-xs-center frm_grp">
                                <a href="#" target="_blank">Login</a>
                            </div>


                        </div>
                        <!--/Form with header-->

                    </div><!--col-sm-6-->



                </div>
            </div>

        </div>
    </div>

0 个答案:

没有答案