rhymix/modules/install/tpl/license_agreement.html
conory b1cb1f3f34 다른 프레임워크와 css 충돌을 피하기 위해 rhymix.less의 class/id 이름에 prefix 처리
변경전의 xe.less 파일도 rhymix.less와 함께 load 하여 호환정 유지

CSS 충돌 예)
bootstrap의 .btn
사용 예)
bootstrap 사용시엔 {Context::unloadBasicFiles('xe')}으로 unload 시키면 문제없음
2018-08-03 19:45:30 +09:00

30 lines
1.1 KiB
HTML

<include target="header.html" />
<form id="body" action="./" method="post">
<include target="progress_menu.html" />
<div id="content">
<h2>{$lang->license_agreement}</h2>
<div cond="$XE_VALIDATOR_MESSAGE" class="rhymix_message {$XE_VALIDATOR_MESSAGE_TYPE}">
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<input type="hidden" name="act" value="procInstallLicenseAgreement">
<input type="hidden" name="module" value="install">
<div class="content-license">
<include target="license_text.ko.html" cond="$lang_type === 'ko'" />
<include target="license_text.en.html" cond="$lang_type !== 'ko'" />
</div>
<p>
<label><input type="checkbox" name="license_agreement" value="Y" /> <strong>{$lang->cmd_license_agree}</strong></label>
</p>
</div>
<div id="buttons">
<div class="align-left">
<!--<a href="{getUrl('', 'act','')}" class="button grey">&laquo; {$lang->cmd_back}</a>-->
</div>
<div class="align-right">
<button type="submit" id="task-license-agreement" value="">{$lang->cmd_next} &raquo;</button>
</div>
</div>
</form>
<include target="footer.html" />