mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-30 21:40:43 +02:00
Updates for Install Process....
git-svn-id: file:///svn/phpbb/trunk@1102 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
38
phpBB/templates/Default/install.tpl
Normal file
38
phpBB/templates/Default/install.tpl
Normal file
@@ -0,0 +1,38 @@
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>phpBB Version 2.0 Installation</TITLE>
|
||||
</HEAD>
|
||||
<BODY BACKGROUND="WHITE">
|
||||
<FORM action='{S_FORM_ACTION}' method="post" >
|
||||
<!-- BEGIN hidden_fields -->
|
||||
<input type="hidden" name='{hidden_fields.NAME}' value='{hidden_fields.VALUE}'>
|
||||
<!-- END hidden_fields -->
|
||||
<table>
|
||||
<tr>
|
||||
<td>{L_INSTRUCT}</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table>
|
||||
<!-- BEGIN selects -->
|
||||
<tr>
|
||||
<td align="right">{selects.L_LABEL}</td>
|
||||
<td><select name='{selects.NAME}'>
|
||||
<!-- BEGIN options -->
|
||||
<option value='{selects.options.VALUE}'>{selects.options.LABEL}</option>
|
||||
<!-- END options -->
|
||||
</td>
|
||||
</tr>
|
||||
<!-- END selects -->
|
||||
<!-- BEGIN inputs -->
|
||||
<tr>
|
||||
<td align="right">{inputs.L_LABEL}</td>
|
||||
<td><input type="text" name="{inputs.NAME}"></td>
|
||||
</tr>
|
||||
<!-- END inputs -->
|
||||
<tr>
|
||||
<td align="center" colspan="2"><input type="submit" value="{L_SUBMIT}"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</FORM>
|
||||
</BODY>
|
||||
</HTML>
|
29
phpBB/templates/Default/install_error.tpl
Normal file
29
phpBB/templates/Default/install_error.tpl
Normal file
@@ -0,0 +1,29 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>phpBB Version 2.0 Installer</title>
|
||||
</head>
|
||||
<body background="white">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<H1>{L_TITLE}</H1>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" align="center" width="100%" bgcolor="#000000" cellpadding="0" cellspacing="1">
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" width="100%" cellpadding="0" cellspacing="1">
|
||||
<tr class="tableheader">
|
||||
<td width="100%" align="center"><b>{L_ERROR}<b></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user