mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 03:32:00 +09:00
* 필요할 때 라이믹스 (Rhymix PRN) # 필요할 때 라이믹스 (Rhymix PRN) 마더캣님과 작업하는 정식 라이믹스 회원 모듈 모바일 스킨 디자인: 마더캣 구현: 미솔 참고: 미솔의 개인적인 스케줄이 바빠서 오래 걸릴 예정. rhymix-designs 에서 작업하고 사용할만하게 되면 옮겨오는 식으로 작업중... * Simple world 스킨 흔적 지우기. * 프로필 이미지 등록, 삭제 UI * 탈퇴 페이지에서 필수가 아닌 변수 삭제 https://github.com/rhymix/rhymix/pull/885 @bjrambo 님 의견 반영 * 회원 모듈 스킨, 커뮤니케이션 모듈 스킨 * 잘못 들어간 파일삭제 * 잘못 들어간 파일 삭제 * 깨진 이미지 복구 * 스킨 다듬기
37 lines
1.7 KiB
HTML
37 lines
1.7 KiB
HTML
<include target="./common_header.html" />
|
|
|
|
<div class="prn-body">
|
|
<h1>{$member_title = $lang->cmd_modify_member_password}</h1>
|
|
<div cond="$XE_VALIDATOR_MESSAGE" class="rx_member-notice {$XE_VALIDATOR_MESSAGE_TYPE}">
|
|
<p>{$XE_VALIDATOR_MESSAGE}</p>
|
|
</div>
|
|
<form ruleset="modifyPassword" id="fo_insert_member" action="./" method="post">
|
|
<input type="hidden" name="module" value="member" />
|
|
<input type="hidden" name="act" value="procMemberModifyPassword" />
|
|
<input type="hidden" name="mid" value="{$mid}" />
|
|
<input type="hidden" name="document_srl" value="{$document_srl}" />
|
|
<input type="hidden" name="page" value="{$page}" />
|
|
<input type="hidden" name="xe_validator_id" value="modules/member/skins/rx_prn/1" />
|
|
<input type="hidden" name="success_return_url" value="{getUrl('act','dispMemberInfo')}" />
|
|
<div class="control-group">
|
|
<label for="uid">
|
|
{lang($identifier)}
|
|
</label>
|
|
<input type="text" disabled="disabled" value="{$formValue}" id="uid" title="{lang($identifier)}" />
|
|
<label for="cpw">
|
|
{lang('member.current_password')}
|
|
</label>
|
|
<input type="password" name="current_password" id="cpw" required title="{$lang->current_password}" />
|
|
<label for="npw1">
|
|
{lang('common.password1')}
|
|
</label>
|
|
<input type="password" name="password1" id="npw1" required title="{$lang->password1}" /> <span class="rx_member-notice">{$lang->about_password_strength[$member_config->password_strength]}</span>
|
|
<label for="npw2">
|
|
{lang('common.password2')}
|
|
</label>
|
|
<input type="password" name="password2" id="npw2" required title="{$lang->password2}" />
|
|
<input type="submit" value="{$lang->cmd_registration}" />
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<include target="./common_footer.html" />
|