Page 447 - MDP2022-3
P. 447

id="email"
                            v-model="userEmail"
                            class="form-control  joinInput"
                            placeholder="이메일  주소를  입력해주세요"
                            type="email"
                        />
                        <div>
                            <h4  style="margin-top:  40px">이용하실  닉네임을  입력해주세요</h4>
                        </div>
                        <input
                            id="nick"
                            v-model="userNickName"
                            class="form-control  joinInput"
                            placeholder="닉네임"
                            type="text"
                        />


                        <div>
                            <h4  style="margin-top:  40px">이용하실  비밀번호를  입력해주세요</h4>
                        </div>
                        <input
                            id="pw"
                            v-model="password"
                            class="form-control  joinInput"
                            placeholder="비밀번호"
                            type="password"
                        /><i  class="fa  fa-eye  fa-lg"  id="eye"  @click="hideShowPsw()"></i>


                        <div><h4  style="margin-top:  40px">비밀번호  재확인</h4></div>
                        <input
                            id="pw2"
                            v-model="password2"
                            class="form-control  joinInput"
                            placeholder="비밀번호  재확인"
                            type="password"
                        />
                        <input
                            class="btn  btn-primary  btn  btn-default  btn-sm"
                            style="margin-top:  30px"
                            type="button"
                            value="회원가입  테스트"
                            @click="submitFormV2()"
                        />
                    </div>
   442   443   444   445   446   447   448   449   450   451   452