nextcloud/templates/installation.php

51 lines
2.5 KiB
PHP
Raw Normal View History

2011-04-17 02:45:05 +04:00
<div id="login">
<img src="<?php echo image_path('', 'owncloud-logo-medium-white.png'); ?>" alt="ownCloud" />
<form action="#" method="post">
2011-04-17 02:45:05 +04:00
<input type='hidden' name='install' value='true'/>
<fieldset>
<input type="text" name="login" id="admin" value="admin username" />
<input type="password" name="pass" id="password" value="password" />
2011-04-17 02:45:05 +04:00
</fieldset>
<fieldset>
<?php if(!$_['hasSQLite']): ?>
<legend><abbr title="to use SQLite instead, install it on your server">MySQL</abbr> Database</legend>
<input type="text" name="dbuser" id="dbuser" value="MySQL user" />
<input type="password" name="dbpass" id="dbpass" value="password" />
<input type="text" name="dbname" id="dbname" value="database name" />
2011-04-17 02:45:05 +04:00
<?php endif;?>
</fieldset>
<fieldset id="advanced">
<legend><a id="advanced_options_link" href="">Advanced </a></legend>
<div id="advanced_options">
<label>Data directory</label><input type="text" name="directory" value="<?php echo($_['datadir']);?>" />
2011-04-17 02:45:05 +04:00
<?php if($_['hasMySQL'] and $_['hasSQLite']): ?>
<input type="radio" name="dbtype" value='sqlite' id="sqlite" checked="checked" /><label class="sqlite" for="sqlite">SQLite</label>
<input type="radio" name="dbtype" value='mysql' id="mysql"><label class="mysql" for="mysql">MySQL</label>
2011-04-17 02:45:05 +04:00
<div id="use_mysql">
<input type="text" name="dbuser" id="dbuser" value="MySQL user" />
<input type="password" name="dbpass" id="dbpass" value="password" />
<input type="text" name="dbname" id="dbname" value="database name" />
2011-04-17 02:45:05 +04:00
<?php endif;?>
<?php if($_['hasMySQL'] and !$_['hasSQLite']): ?>
<input type="hidden" name="dbtype" value="mysql" />
2011-04-17 02:45:05 +04:00
<?php endif;?>
<?php if(!$_['hasMySQL'] and $_['hasSQLite']): ?>
<input type="hidden" name="dbtype" value="sqlite" />
2011-04-17 02:45:05 +04:00
<?php endif;?>
2011-04-17 15:42:07 +04:00
<?php if($_['hasMySQL'] and $_['hasSQLite']): ?>
<label>Database host</label><input type="text" name="dbhost" id="dbhost" value="localhost" />
<label>Table prefix</label><input type="text" name="dbtableprefix" id="dbtableprefix" value="oc_" />
2011-04-17 02:45:05 +04:00
</div>
<?php endif;?>
2011-04-17 15:42:07 +04:00
<?php if($_['hasMySQL'] and !$_['hasSQLite']): ?>
<label>Database host</label><input type="text" name="dbhost" id="dbhost" value="localhost" />
<label>Table prefix</label><input type="text" name="dbtableprefix" id="dbtableprefix" value="oc_" />
2011-04-17 15:42:07 +04:00
<?php endif;?>
2011-04-17 02:45:05 +04:00
</div>
</fieldset>
<fieldset>
<p class="submit"><input type="submit" value="Create" /></p>
</fieldset>
</form>
</div>