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 시키면 문제없음
48 lines
1.8 KiB
HTML
48 lines
1.8 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_mailerAdminTestSendSMS" />
|
|
<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_sms_test}</h2>
|
|
|
|
<div class="x_control-group">
|
|
<label class="x_control-label" for="advanced_mailer_recipient_number">{$lang->cmd_advanced_mailer_recipient_number}</label>
|
|
<div class="x_controls">
|
|
<input type="text" id="advanced_mailer_recipient_number" value="{config('sms.default_from')}" />
|
|
{$lang->cmd_advanced_mailer_country_code}
|
|
<input type="number" id="advanced_mailer_country_code" value="" />
|
|
<p class="x_help-block">{$lang->cmd_advanced_mailer_country_code_help}</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="x_control-group">
|
|
<label class="x_control-label" for="advanced_mailer_content">{$lang->cmd_advanced_mailer_status_content}</label>
|
|
<div class="x_controls">
|
|
<textarea id="advanced_mailer_content">{$lang->cmd_advanced_mailer_test_content}</textarea>
|
|
</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_sms" type="submit" class="x_btn x_btn-primary x_pull-right">{$lang->cmd_advanced_mailer_send}</button>
|
|
</div>
|
|
|
|
</form>
|