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']) ?>
|
||||
<table>
|
||||
<tr>
|
||||
<td class="label">계정</td>
|
||||
<td class="label" nowrap>계정</td>
|
||||
<td class="column">
|
||||
<?= form_input('id', old('id', DEFAULTS['EMPTY'])) ?>
|
||||
</td>
|
||||
@ -24,16 +24,14 @@
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="label">암호</td>
|
||||
<td class="label" nowrap>암호</td>
|
||||
<td class="column">
|
||||
<?= form_password('passwd', old('passwd', DEFAULTS['EMPTY'])) ?>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<div class="login_bottom">
|
||||
<a href="/front/user/insert">회원가입</a>
|
||||
</div>
|
||||
<td colspan="4" class="login_bottom">
|
||||
<a href="/front/user/insert">회원가입</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
@ -4,42 +4,42 @@
|
||||
* Created : 2016/9/11 Tri-aBility by Junheum,Choi
|
||||
* Updated :
|
||||
------------------------------------------------------------ */
|
||||
div#content div.login{
|
||||
margin-top:30px;
|
||||
}
|
||||
div#content div.login form{
|
||||
position:relative;
|
||||
div.login{
|
||||
width: 799px;
|
||||
height: 283px;
|
||||
margin-top:30px;
|
||||
margin-left:120px;
|
||||
padding-top:155px;
|
||||
background-image: url('/images/common/adminbg.png');
|
||||
}
|
||||
div.login form{
|
||||
margin-left:300px;
|
||||
/* border: 1px solid red; */
|
||||
}
|
||||
|
||||
div#content div.login form table {
|
||||
position: absolute;
|
||||
top:150px;
|
||||
left:315px;
|
||||
div.login form table {
|
||||
width:300px;
|
||||
/* border: 1px solid red; */
|
||||
}
|
||||
|
||||
div#content div.login form table td.label {
|
||||
div.login form table td {
|
||||
text-align: center;
|
||||
color:white;
|
||||
padding-right:5px;
|
||||
/* border: 1px solid blue; */
|
||||
}
|
||||
div#content table td.column {
|
||||
div.login form table td.column {
|
||||
height: 27px;
|
||||
}
|
||||
|
||||
div#content div.login_bottom{
|
||||
div.login form table td.login_bottom{
|
||||
padding-top:20px;
|
||||
padding-left:150px;
|
||||
}
|
||||
div#content div.login_bottom a{
|
||||
div.login form table td.login_bottom a{
|
||||
color:white;
|
||||
}
|
||||
|
||||
/* div#content div.login form table input[type=submit]{
|
||||
/* div.login form table input[type=submit]{
|
||||
width: 57px;
|
||||
height: 60px;
|
||||
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