summaryrefslogtreecommitdiff
path: root/templates/install_database_done.tpl
diff options
context:
space:
mode:
authorbitweaver.org <bitweaver@users.sourceforge.net>2005-06-19 04:51:19 +0000
committerbitweaver.org <bitweaver@users.sourceforge.net>2005-06-19 04:51:19 +0000
commitf2c6619fcf9489f34354efe9a9eab3dd73db773e (patch)
tree8640b8d4ca95a864be32d785a4b31d64ef46032f /templates/install_database_done.tpl
downloadinstall-f2c6619fcf9489f34354efe9a9eab3dd73db773e.tar.gz
install-f2c6619fcf9489f34354efe9a9eab3dd73db773e.tar.bz2
install-f2c6619fcf9489f34354efe9a9eab3dd73db773e.zip
IMPORT TikiPro CLYDE FINAL
Diffstat (limited to 'templates/install_database_done.tpl')
-rw-r--r--templates/install_database_done.tpl83
1 files changed, 83 insertions, 0 deletions
diff --git a/templates/install_database_done.tpl b/templates/install_database_done.tpl
new file mode 100644
index 0000000..94e8088
--- /dev/null
+++ b/templates/install_database_done.tpl
@@ -0,0 +1,83 @@
+<h1>Database Connection Information</h1>
+
+{form legend="Your database connection information"}
+ <input type="hidden" name="step" value="{$next_step}" />
+
+ <div class="row">
+ <ul class="result">
+ {if $error}
+ <li class="error">
+ {biticon ipackage=liberty iname=error iexplain=error}
+ {$error}
+ </li>
+ {else}
+ <li class="success">
+ {biticon ipackage=liberty iname=success iexplain=success}
+ A connection to your database was sucessfully established
+ </li>
+ {/if}
+ </ul>
+ </div>
+
+ <div class="row">
+ {formlabel label="Database type"}
+ {forminput}
+ {formfeedback note=$gBitDbType}
+ {/forminput}
+ </div>
+
+ <div class="row">
+ {formlabel label="Host"}
+ {forminput}
+ {formfeedback note=$gBitDbHost}
+ {/forminput}
+ </div>
+
+ <div class="row">
+ {formlabel label="User"}
+ {forminput}
+ {formfeedback note=$gBitDbUser}
+ {/forminput}
+ </div>
+
+ <div class="row">
+ {formlabel label="Password"}
+ {forminput}
+ {formfeedback note=$gBitDbPassword_print}
+ {/forminput}
+ </div>
+
+ <div class="row">
+ {formlabel label="Database name"}
+ {forminput}
+ {formfeedback note=$gBitDbName}
+ {/forminput}
+ </div>
+
+ <div class="row">
+ {formlabel label="Database Prefix"}
+ {forminput}
+ {formfeedback note=$db_prefix_bit|replace:"`":""}
+ {/forminput}
+ </div>
+
+ <div class="row">
+ {formlabel label="Site Base Url"}
+ {forminput}
+ {formfeedback note=$root_url_bit}
+ {/forminput}
+ </div>
+
+ <div class="row">
+ <p>
+ This information was stored in the file '<strong>{$gBitLoc.INSTALL_PKG_PATH}kernel/config_inc.php</strong>'. if you should have to modify the settings at some point, you can use this installer, or modify that file directly.
+ </p>
+ <p>
+ If you are interested in debugging bitweaver, please view this file, as there are some additional debugging options that can't be set elsewhere.
+ </p>
+ </div>
+
+ <div class="row submit">
+ <input type="submit" value="Continue {$section|default:"Install"} Process" />
+ </div>
+{/form}