mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 08:49:56 +09:00
33 lines
906 B
HTML
33 lines
906 B
HTML
<table border="1">
|
|
<tr>
|
|
<td colspan="2">{$lang->introduce_title}</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<!--@if($install_enable)-->
|
|
<form method="get" action="./">
|
|
<input type="hidden" name="module" value="{$module}" />
|
|
<input type="hidden" name="act" value="dispInstallForm" />
|
|
|
|
<table border="1">
|
|
<tr>
|
|
<th colspan="2">{$lang->db_type}</th>
|
|
</tr>
|
|
<!--@foreach(DB::getSupportedList() as $key => $val)-->
|
|
<tr>
|
|
<td><input type="radio" name="db_type" value="{$val}" id="db_type_{$val}" <!--@if($val=="mysql")-->checked="true"<!--@end-->/><label for="db_type_{$val}">{$val}</label></td>
|
|
<td>{$lang->db_desc[$val]}</td>
|
|
</tr>
|
|
<!--@end-->
|
|
<tr>
|
|
<td colspan="2"><input type="submit" value="{$lang->cmd_install_next}" /></td>
|
|
</tr>
|
|
</table>
|
|
|
|
</form>
|
|
|
|
<!--@else-->
|
|
{$lang->cmd_install_fix_checklist}
|
|
[<a href="./">{$lang->cmd_next}</a>]
|
|
|
|
<!--@end-->
|