mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7466 201d5d3c-b55e-5fd7-737f-ddc643e51545
56 lines
2.3 KiB
HTML
56 lines
2.3 KiB
HTML
<!--%import("js/install_admin.js")-->
|
|
<!--#include("header.html")-->
|
|
|
|
<form action="./" method="post" onsubmit="return doInstallFTPInfo(this);" id="ftp_form">
|
|
|
|
<h2 class="xeAdmin">{$lang->ftp_form_title}</h2>
|
|
|
|
<blockquote>{$lang->msg_safe_mode_ftp_needed}</blockquote>
|
|
|
|
<table cellspacing="0" class="tableType7">
|
|
<col width="100" />
|
|
<col width="160" />
|
|
<col />
|
|
|
|
<!-- FTP 정보 -->
|
|
<tr>
|
|
<th rowspan="6" scope="row" class="hr"><label for="radio2">{$lang->ftp}</label></th>
|
|
<th class="second" scope="row"><label for="textfield20">{$lang->ftp_host}</label></th>
|
|
<td><input type="text" id="textfield20" name="ftp_host" value="127.0.0.1" class="inputTypeText" /></td>
|
|
</tr>
|
|
<tr>
|
|
<th class="second" scope="row"><label for="textfield21">{$lang->user_id}</label></th>
|
|
<td><input type="text" id="textfield21" name="ftp_user" value="" class="inputTypeText" /></td>
|
|
</tr>
|
|
<tr>
|
|
<th class="second" scope="row"><label for="textfield22">{$lang->password}</label></th>
|
|
<td><input id="textfield22" type="password" name="ftp_password" class="inputTypeText" /></td>
|
|
</tr>
|
|
<tr>
|
|
<th class="second" scope="row"><label for="textfield24">{$lang->ftp_port}</label></th>
|
|
<td><input id="textfield24" type="text" name="ftp_port" value="21" class="inputTypeText" /></td>
|
|
</tr>
|
|
<tr>
|
|
<th class="second hr" scope="row" rowspan="2"><div>{$lang->msg_ftp_installed_ftp_realpath}<br /><br/>{$lang->msg_ftp_installed_realpath}:<br/> {_XE_PATH_}</div></th>
|
|
<td>
|
|
<input type="text" name="ftp_root_path" value="{$ftp_info->ftp_root_path}" class="inputTypeText w400" />
|
|
</td>
|
|
</tr>
|
|
<tr id="ftplist">
|
|
<td class="hr">
|
|
<div>
|
|
<span class="button blue strong"><input type="button" onclick="getFTPList(); return false;" value="{$lang->ftp_get_list}"></span>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<div class="buttonCenter">
|
|
<span class="button green"><input type="button" value="{$lang->cmd_check_ftp_connect}" onclick="doCheckFTPInfo(); return false;"/></span>
|
|
<span class="button blue"><input type="submit" value="{$lang->cmd_ignore}" /></span>
|
|
<span class="button red"><input type="submit" value="{$lang->cmd_registration}" /></span>
|
|
</div>
|
|
|
|
</form>
|
|
|
|
<!--#include("footer.html")-->
|