mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-03 16:51:40 +09:00
변경전의 xe.less 파일도 rhymix.less와 함께 load 하여 호환정 유지
CSS 충돌 예)
bootstrap의 .btn
사용 예)
bootstrap 사용시엔 {Context::unloadBasicFiles('xe')}으로 unload 시키면 문제없음
45 lines
1.7 KiB
HTML
45 lines
1.7 KiB
HTML
<include target="./common.html" />
|
|
<load target="css/config.css" />
|
|
<load target="js/config.js" />
|
|
|
|
<form class="x_form-horizontal" action="./" method="post" id="advanced_mailer">
|
|
<input type="hidden" name="module" value="advanced_mailer" />
|
|
<input type="hidden" name="act" value="procAdvanced_mailerAdminTestSendMail" />
|
|
<input type="hidden" name="success_return_url" value="{getRequestUriByServerEnviroment()}" />
|
|
|
|
<div cond="$XE_VALIDATOR_MESSAGE" class="rhymix_message {$XE_VALIDATOR_MESSAGE_TYPE}">
|
|
<p>{$XE_VALIDATOR_MESSAGE}</p>
|
|
</div>
|
|
|
|
<section class="section">
|
|
|
|
<h2>{$lang->cmd_advanced_mailer_mail_test}</h2>
|
|
|
|
<div class="x_control-group">
|
|
<label class="x_control-label" for="advanced_mailer_recipient_name">{$lang->cmd_advanced_mailer_recipient_name}</label>
|
|
<div class="x_controls">
|
|
<input type="text" id="advanced_mailer_recipient_name" value="{Context::get('logged_info')->nick_name}" />
|
|
</div>
|
|
</div>
|
|
|
|
<div class="x_control-group">
|
|
<label class="x_control-label" for="advanced_mailer_recipient_email">{$lang->cmd_advanced_mailer_recipient_email}</label>
|
|
<div class="x_controls">
|
|
<input type="text" id="advanced_mailer_recipient_email" value="{Context::get('logged_info')->email_address}" />
|
|
</div>
|
|
</div>
|
|
|
|
<div class="x_control-group">
|
|
<label class="x_control-label">{$lang->cmd_advanced_mailer_test_result}</label>
|
|
<div class="x_controls">
|
|
<div id="advanced_mailer_test_result"></div>
|
|
</div>
|
|
</div>
|
|
|
|
</section>
|
|
|
|
<div class="rhymix_button_wrapper x_clearfix">
|
|
<button id="advanced_mailer_test_send_mail" type="submit" class="x_btn x_btn-primary x_pull-right">{$lang->cmd_advanced_mailer_send}</button>
|
|
</div>
|
|
|
|
</form>
|