shoppingmallv2 init...
This commit is contained in:
parent
0e11ca3e66
commit
4010c51bd5
@ -7,7 +7,7 @@
|
|||||||
<?= form_open(current_url(), $viewDatas['forms']['attributes'], $viewDatas['forms']['hiddens']) ?>
|
<?= form_open(current_url(), $viewDatas['forms']['attributes'], $viewDatas['forms']['hiddens']) ?>
|
||||||
<table>
|
<table>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="label">계정</td>
|
<td class="label" nowrap>계정</td>
|
||||||
<td class="column">
|
<td class="column">
|
||||||
<?= form_input('id', old('id', DEFAULTS['EMPTY'])) ?>
|
<?= form_input('id', old('id', DEFAULTS['EMPTY'])) ?>
|
||||||
</td>
|
</td>
|
||||||
@ -24,16 +24,14 @@
|
|||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="label">암호</td>
|
<td class="label" nowrap>암호</td>
|
||||||
<td class="column">
|
<td class="column">
|
||||||
<?= form_password('passwd', old('passwd', DEFAULTS['EMPTY'])) ?>
|
<?= form_password('passwd', old('passwd', DEFAULTS['EMPTY'])) ?>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="2">
|
<td colspan="4" class="login_bottom">
|
||||||
<div class="login_bottom">
|
<a href="/front/user/insert">회원가입</a>
|
||||||
<a href="/front/user/insert">회원가입</a>
|
|
||||||
</div>
|
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|||||||
@ -4,42 +4,42 @@
|
|||||||
* Created : 2016/9/11 Tri-aBility by Junheum,Choi
|
* Created : 2016/9/11 Tri-aBility by Junheum,Choi
|
||||||
* Updated :
|
* Updated :
|
||||||
------------------------------------------------------------ */
|
------------------------------------------------------------ */
|
||||||
div#content div.login{
|
div.login{
|
||||||
margin-top:30px;
|
|
||||||
}
|
|
||||||
div#content div.login form{
|
|
||||||
position:relative;
|
|
||||||
width: 799px;
|
width: 799px;
|
||||||
height: 283px;
|
height: 283px;
|
||||||
|
margin-top:30px;
|
||||||
margin-left:120px;
|
margin-left:120px;
|
||||||
|
padding-top:155px;
|
||||||
background-image: url('/images/common/adminbg.png');
|
background-image: url('/images/common/adminbg.png');
|
||||||
|
}
|
||||||
|
div.login form{
|
||||||
|
margin-left:300px;
|
||||||
/* border: 1px solid red; */
|
/* border: 1px solid red; */
|
||||||
}
|
}
|
||||||
|
|
||||||
div#content div.login form table {
|
div.login form table {
|
||||||
position: absolute;
|
width:300px;
|
||||||
top:150px;
|
|
||||||
left:315px;
|
|
||||||
/* border: 1px solid red; */
|
/* border: 1px solid red; */
|
||||||
}
|
}
|
||||||
|
|
||||||
div#content div.login form table td.label {
|
div.login form table td {
|
||||||
|
text-align: center;
|
||||||
color:white;
|
color:white;
|
||||||
padding-right:5px;
|
padding-right:5px;
|
||||||
|
/* border: 1px solid blue; */
|
||||||
}
|
}
|
||||||
div#content table td.column {
|
div.login form table td.column {
|
||||||
height: 27px;
|
height: 27px;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#content div.login_bottom{
|
div.login form table td.login_bottom{
|
||||||
padding-top:20px;
|
padding-top:20px;
|
||||||
padding-left:150px;
|
|
||||||
}
|
}
|
||||||
div#content div.login_bottom a{
|
div.login form table td.login_bottom a{
|
||||||
color:white;
|
color:white;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* div#content div.login form table input[type=submit]{
|
/* div.login form table input[type=submit]{
|
||||||
width: 57px;
|
width: 57px;
|
||||||
height: 60px;
|
height: 60px;
|
||||||
background: url('/images/common/btn_login.png');
|
background: url('/images/common/btn_login.png');
|
||||||
|
|||||||
@ -1,14 +0,0 @@
|
|||||||
function sideMenuToggle (){
|
|
||||||
var accordion = $(".accordion")[0];
|
|
||||||
// console.log(accordion.clientWidth);
|
|
||||||
if (accordion.clientWidth == 0){
|
|
||||||
accordion.style.display = "block";
|
|
||||||
$("#left_menu").css({ "width": '250px' })
|
|
||||||
$("#menu_button").html("메뉴닫기");
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
accordion.style.display = "none";
|
|
||||||
$("#left_menu").css({"width":'28px'})
|
|
||||||
$("#menu_button").html("메뉴열기");
|
|
||||||
}
|
|
||||||
}//toggleMenu
|
|
||||||
Loading…
Reference in New Issue
Block a user