묻고답하기
레이어 로그인창 SSL 적용 방법.
2014.07.25 22:56
SSL 선택적 사용중인데요,
http://www.xpressengine.com/forum/22784925
이 글을 보니 레이어 로그인창에선 SSL 적용이 안된다고 하네요.
다행히 해당 글에서 Canto 님이 댓글로 아래의 해결방법을 알려주셨는데
<input type="hidden" name="success_return_url" value="http://홈페이지주소{getRequestUriByServerEnviroment()}" />
저걸 어디에 적용해야 할지를 모르겠네요ㅠ
알려주시면 감사하겠습니다.
<form action="" method="post" id="commonLogin" onsubmit="return procFilter(this, login)">
<input name="user_id" type="text" id="uid" value="" onfocus="this.className='user_id focus'" onblur="if (this.value.length==0) {this.className='user_id'}else {this.className='user_id focusnot'}" class="user_id" />
<input name="password" type="password" id="upw" value="" onfocus="this.className='user_pw focus'" onblur="if (this.value.length==0) {this.className='user_pw'}else {this.className='user_pw focusnot'};" class="user_pw" />
<button type="submit" value="submit" class="submit">SUBMIT</button>
<div class="saveIDinfo">
<input name="keep_signed" type="checkbox" id="keepA" value="Y" class="inputCheck" onclick="if(this.checked) return confirm('{$lang->about_keep_signed}');"/>
<label for="keepA">저장</label>
</div>
</form>
@XE러버 @Canto
댓글 3
-
SeungXE
2014.07.26 10:30
-
KrteamENT
2014.07.26 10:37
크으...멋집니다! -
emskek2834
2014.07.26 12:23
정말 감사합니다ㅠㅠ