mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
36 lines
1.5 KiB
HTML
36 lines
1.5 KiB
HTML
<include target="header.html" />
|
|
<include target="category.html" />
|
|
{@
|
|
$from_id = array(
|
|
'modules/autoinstall/tpl/config/1' => 1
|
|
);
|
|
}
|
|
<div cond="$XE_VALIDATOR_MESSAGE && isset($from_id[$XE_VALIDATOR_ID])" class="message {$XE_VALIDATOR_MESSAGE_TYPE}">
|
|
<p>{$XE_VALIDATOR_MESSAGE}</p>
|
|
</div>
|
|
|
|
<form action="./" class="x_form-horizontal" ruleset="insert_config" method="post">
|
|
<input type="hidden" name="module" value="autoinstall" />
|
|
<input type="hidden" name="act" value="procAutoinstallAdminInsertConfig" />
|
|
<input type="hidden" name="success_return_url" value="{getUrl('', 'module', 'admin', 'act', $act)}" />
|
|
<input type="hidden" name="xe_validator_id" value="modules/autoinstall/tpl/config/1" />
|
|
|
|
<div class="x_control-group">
|
|
<label class="x_control-label" for="location_site">{$lang->location_site}</label>
|
|
<div class="x_controls">
|
|
<input type="url" id="location_site" name="location_site" style="min-width:90%" value="{$config->location_site}" />
|
|
<p class="x_help-block">{$lang->about_location_site}</p>
|
|
</div>
|
|
</div>
|
|
<div class="x_control-group">
|
|
<label class="x_control-label" for="download_server">{$lang->download_server}</label>
|
|
<div class="x_controls">
|
|
<input type="url" id="download_server" name="download_server" style="min-width:90%" value="{$config->download_server}" />
|
|
<p class="x_help-block">{$lang->about_download_server}</p>
|
|
</div>
|
|
</div>
|
|
<div class="x_clearfix btnArea">
|
|
<span class="x_pull-right"><input class="x_btn x_btn-primary" type="submit" value="{$lang->cmd_save}" /></span>
|
|
</div>
|
|
</form>
|
|
|