Browse Source

로그인 x 버튼 추가

whakdo963 2 years ago
parent
commit
32c9fb8dc5
2 changed files with 20 additions and 0 deletions
  1. 15 0
      src/main/webapp/mobile/app/login.html
  2. 5 0
      src/main/webapp/mobile/css/style.css

+ 15 - 0
src/main/webapp/mobile/app/login.html

@@ -35,6 +35,11 @@
35 35
         <div class="input_area">
36 36
           <input type="text" name="bsnsRegNo" id="ITP_FORM_LOGIN_BSNS_REG_NO" required value="1">
37 37
           <label for="ITP_FORM_LOGIN_BSNS_REG_NO">사업자번호</label>
38
+          <div class="itp_del_btn reg_no">
39
+	          <button type="button" id="ITP_FORM_LOGIN_DEL_BSNS_REG_NO">
40
+  				<img src="../img/close.png" alt="로고" class=" ">
41
+	          </button>
42
+          </div>
38 43
           <button type="button" id="ITP_BTN_LOGIN_BSNS_REG_NO">연결</button>
39 44
         </div>
40 45
         <div class="brand_list">
@@ -47,10 +52,20 @@
47 52
         <div class="input_area">
48 53
           <input type="text" id="ITP_FORM_LOGIN_USER_ID" required value="BRD221100002">
49 54
           <label for="ITP_FORM_LOGIN_USER_ID">아이디</label>
55
+          <div class="itp_del_btn">
56
+	          <button type="button" id="ITP_FORM_DEL_LOGIN_USER_ID">
57
+  				<img src="../img/close.png" alt="로고" class=" ">
58
+	          </button>
59
+          </div>
50 60
         </div>
51 61
         <div class="input_area">
52 62
           <input type="password" id="ITP_FORM_LOGIN_USER_PW"  required value="1">
53 63
           <label for="ITP_FORM_LOGIN_USER_PW">비밀번호</label>
64
+          <div class="itp_del_btn">
65
+	          <button type="button" id="ITP_FORM_DEL_LOGIN_USER_PW">
66
+  				<img src="../img/close.png" alt="로고" class=" ">
67
+	          </button>
68
+          </div>
54 69
         </div>
55 70
       </div>
56 71
       <div class="error" style="display: none">

+ 5 - 0
src/main/webapp/mobile/css/style.css

@@ -155,6 +155,11 @@ body.eee {height: 700px; background: #eee;}
155 155
 #ITP_LOGIN .login_popup .num_area .input_area {margin-bottom: 10px;}
156 156
 #ITP_LOGIN .login_popup .num_area .input_area input {width:50%; font-size: 0.8rem; }
157 157
 #ITP_LOGIN .login_popup .num_area .input_area button {margin-left: 0.1%; width: 19.5%; height: 45px; background-color: #f7b014; color: #eee; font-size: 16px; padding: 0; border:3px solid #fbd896; border-radius: 10px;}
158
+#ITP_LOGIN .login_popup .itp_del_btn.reg_no {left:120px; top:5px;}
159
+#ITP_LOGIN .login_popup .itp_del_btn.reg_no button {width:45px; border:none; background:transparent;}
160
+#ITP_LOGIN .login_popup .itp_del_btn {position:absolute; top:12px; right:66px;}
161
+#ITP_LOGIN .login_popup .itp_del_btn button {width:25px; border:none; padding:0;}
162
+#ITP_LOGIN .login_popup .itp_del_btn button img{width:18px;}
158 163
 #ITP_LOGIN .login_popup .num_area .brand_list select {padding-left: 10px; width: 70%; height: 45px; font-size: 0.8rem; border:2px solid #ddd; border-radius:10px; background: url(../img/downarrow.png)no-repeat 95% 50%/20px auto; -webkit-appearance:none; appearance:none;}
159 164
 #ITP_LOGIN .login_popup .num_area .brand_list select option {text-align: left; width: 70%; height: 50px; border: 1px solid #000; font-size: 20px;} 
160 165