Create database.htm
This commit is contained in:
parent
bdebf4ecd2
commit
26276c6340
|
|
@ -0,0 +1,65 @@
|
|||
<div id='page' align='center'>
|
||||
<form method='post' name='frm' action=''>
|
||||
<table width='100%' border='0' cellpadding='0' cellspacing='0'>
|
||||
<tr>
|
||||
<td align='left' width='30%' nowrap='nowrap'>
|
||||
<b>Installation: PostgreSQL</b>
|
||||
</td>
|
||||
<td width='70%' align='right'>
|
||||
<input type='button' class='btn' name='' alt='back' onclick="history.go(-1);" value='Back'>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class='vncellreq' valign='top' align='left' nowrap='nowrap'>
|
||||
{$label_host}
|
||||
</td>
|
||||
<td class='vtable' align='left'>
|
||||
<input class='formfld' type='text' name='database_host' maxlength='255' value="{$database_host}"><br />
|
||||
Enter the host address for the database server.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class='vncell' valign='top' align='left' nowrap='nowrap'>
|
||||
{$label_port}
|
||||
</td>
|
||||
<td class='vtable' align='left'>
|
||||
<input class='formfld' type='text' name='database_port' maxlength='255' value="{$database_port}"><br />
|
||||
Enter the port number. It is optional if the database is using the default port.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class='vncellreq' valign='top' align='left' nowrap='nowrap'>
|
||||
{$label_name}
|
||||
</td>
|
||||
<td class='vtable' align='left'>
|
||||
<input class='formfld' type='text' name='database_name' maxlength='255' value="{$database_name}"><br />
|
||||
Enter the name of the database.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class='vncellreq' valign='top' align='left' nowrap='nowrap'>
|
||||
{$label_username}
|
||||
</td>
|
||||
<td class='vtable' align='left'>
|
||||
<input class='formfld' type='text' name='database_username' maxlength='255' value="{$database_username}"><br />
|
||||
Enter the database username.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class='vncellreq' valign='top' align='left' nowrap='nowrap'>
|
||||
{$label_password}
|
||||
</td>
|
||||
<td class='vtable' align='left'>
|
||||
<input class='formfld' type='text' name='database_password' maxlength='255' value="{$database_password}"><br />
|
||||
Enter the database password.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan='2' align='right'>
|
||||
<input type='hidden' name='step' value='install'>
|
||||
<input type='submit' name='' class='btn' value='Install'>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
</div>
|
||||
Loading…
Reference in New Issue