diff options
Diffstat (limited to 'templates/installation.php')
-rw-r--r-- | templates/installation.php | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/templates/installation.php b/templates/installation.php index 73b9a67743f..5c882e81bf0 100644 --- a/templates/installation.php +++ b/templates/installation.php @@ -1,45 +1,45 @@ <div id="login"> - <img src="<?php echo image_path("", "owncloud-logo-medium-white.png"); ?>" alt="ownCloud" /> + <img src="<?php echo image_path('', 'owncloud-logo-medium-white.png'); ?>" alt="ownCloud" /> <form action="#" method="post"> <input type='hidden' name='install' value='true'/> <fieldset> - <input type="text" name="login" value="your email" /> - <input type="password" name="pass" value="password" /> + <input type="text" name="login" id="admin" value="admin username" /> + <input type="password" name="pass" id="password" value="password" /> </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" value="MySQL user" /> - <input type="password" name="dbpass" value="password" /> - <input type="text" name="dbname" value="database name" /> + <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" /> <?php endif;?> </fieldset> <fieldset id="advanced"> <legend><a id="advanced_options_link" href="">Advanced ▾</a></legend> <div id="advanced_options"> - <label class="left">Data directory</label><input type="text" name="directory" value="<?php echo($_['datadir']);?>" /> + <label>Data directory</label><input type="text" name="directory" value="<?php echo($_['datadir']);?>" /> <?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> <div id="use_mysql"> - <input type="text" name="dbuser" value="MySQL user" /> - <input type="password" name="dbpass" value="password" /> - <input type="text" name="dbname" value="database name" /> + <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" /> <?php endif;?> <?php if($_['hasMySQL'] and !$_['hasSQLite']): ?> - <input type='hidden' name='dbtype' value='mysql'/> + <input type="hidden" name="dbtype" value="mysql" /> <?php endif;?> <?php if(!$_['hasMySQL'] and $_['hasSQLite']): ?> - <input type='hidden' name='dbtype' value='sqlite'/> + <input type="hidden" name="dbtype" value="sqlite" /> <?php endif;?> <?php if($_['hasMySQL'] and $_['hasSQLite']): ?> - <label class="left">Database host</label><input type="text" name="dbhost" value="localhost" /> - <label class="left">Table prefix</label><input type="text" name="dbtableprefix" value="oc_" /> + <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_" /> </div> <?php endif;?> <?php if($_['hasMySQL'] and !$_['hasSQLite']): ?> - <label class="left">Host</label><input type="text" name="dbhost" value="localhost" /> - <label class="left">Table prefix</label><input type="text" name="dbtableprefix" value="oc_" /> + <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_" /> <?php endif;?> </div> </fieldset> |