diff options
author | Jörn Friedrich Dreyer <jfd@butonic.de> | 2013-02-22 07:02:51 -0800 |
---|---|---|
committer | Jörn Friedrich Dreyer <jfd@butonic.de> | 2013-02-22 07:02:51 -0800 |
commit | e8da90d0f45ab870e3d5da6c766159c87bbb1b68 (patch) | |
tree | 9010016688ef9b7d357b7cda8c047dc9340a2e1d /core/templates/installation.php | |
parent | 5c76fffc01cb01fca41863b9a35ea5f14175b861 (diff) | |
parent | 59582e0f3fb395378b88aec2a6d0689bb2ac039e (diff) | |
download | nextcloud-server-e8da90d0f45ab870e3d5da6c766159c87bbb1b68.tar.gz nextcloud-server-e8da90d0f45ab870e3d5da6c766159c87bbb1b68.zip |
Merge pull request #1711 from owncloud/style-cleanup
Codestyle cleanup
Diffstat (limited to 'core/templates/installation.php')
-rw-r--r-- | core/templates/installation.php | 42 |
1 files changed, 28 insertions, 14 deletions
diff --git a/core/templates/installation.php b/core/templates/installation.php index 9cb1d4600d5..c48d2f764e7 100644 --- a/core/templates/installation.php +++ b/core/templates/installation.php @@ -22,7 +22,7 @@ <fieldset class="warning"> <legend><strong><?php echo $l->t('Security Warning');?></strong></legend> <p><?php echo $l->t('No secure random number generator is available, please enable the PHP OpenSSL extension.');?><br/> - <?php echo $l->t('Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account.');?></p> + <?php echo $l->t('Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account.');?></p> </fieldset> <?php endif; ?> <?php if(!$_['htaccessWorking']): ?> @@ -35,12 +35,14 @@ <fieldset id="adminaccount"> <legend><?php echo $l->t( 'Create an <strong>admin account</strong>' ); ?></legend> <p class="infield grouptop"> - <input type="text" name="adminlogin" id="adminlogin" value="<?php print OC_Helper::init_var('adminlogin'); ?>" autocomplete="off" autofocus required /> + <input type="text" name="adminlogin" id="adminlogin" + value="<?php print OC_Helper::init_var('adminlogin'); ?>" autocomplete="off" autofocus required /> <label for="adminlogin" class="infield"><?php echo $l->t( 'Username' ); ?></label> <img class="svg" src="<?php echo image_path('', 'actions/user.svg'); ?>" alt="" /> </p> <p class="infield groupbottom"> - <input type="password" name="adminpass" data-typetoggle="#show" id="adminpass" value="<?php print OC_Helper::init_var('adminpass'); ?>" /> + <input type="password" name="adminpass" data-typetoggle="#show" id="adminpass" + value="<?php print OC_Helper::init_var('adminpass'); ?>" /> <label for="adminpass" class="infield"><?php echo $l->t( 'Password' ); ?></label> <img class="svg" id="adminpass-icon" src="<?php echo image_path('', 'actions/password.svg'); ?>" alt="" /> <input type="checkbox" id="show" name="show" /> @@ -52,12 +54,14 @@ <legend><a id="showAdvanced"><?php echo $l->t( 'Advanced' ); ?> <img class="svg" src="<?php echo image_path('', 'actions/caret-dark.svg'); ?>" /></a></legend> <div id="datadirContent"> <label for="directory"><?php echo $l->t( 'Data folder' ); ?></label> - <input type="text" name="directory" id="directory" value="<?php print OC_Helper::init_var('directory', $_['directory']); ?>" /> + <input type="text" name="directory" id="directory" + value="<?php print OC_Helper::init_var('directory', $_['directory']); ?>" /> </div> </fieldset> <fieldset id='databaseField'> - <?php if($_['hasMySQL'] or $_['hasPostgreSQL'] or $_['hasOracle']) $hasOtherDB = true; else $hasOtherDB =false; //other than SQLite ?> + <?php if($_['hasMySQL'] or $_['hasPostgreSQL'] or $_['hasOracle']) + $hasOtherDB = true; else $hasOtherDB =false; //other than SQLite ?> <legend><?php echo $l->t( 'Configure the database' ); ?></legend> <div id="selectDbType"> <?php if($_['hasSQLite']): ?> @@ -66,7 +70,8 @@ <p>SQLite <?php echo $l->t( 'will be used' ); ?>.</p> <input type="hidden" id="dbtype" name="dbtype" value="sqlite" /> <?php else: ?> - <input type="radio" name="dbtype" value="sqlite" id="sqlite" <?php OC_Helper::init_radio('dbtype', 'sqlite', 'sqlite'); ?>/> + <input type="radio" name="dbtype" value="sqlite" id="sqlite" + <?php OC_Helper::init_radio('dbtype', 'sqlite', 'sqlite'); ?>/> <label class="sqlite" for="sqlite">SQLite</label> <?php endif; ?> <?php endif; ?> @@ -77,7 +82,8 @@ <p>MySQL <?php echo $l->t( 'will be used' ); ?>.</p> <input type="hidden" id="dbtype" name="dbtype" value="mysql" /> <?php else: ?> - <input type="radio" name="dbtype" value="mysql" id="mysql" <?php OC_Helper::init_radio('dbtype', 'mysql', 'sqlite'); ?>/> + <input type="radio" name="dbtype" value="mysql" id="mysql" + <?php OC_Helper::init_radio('dbtype', 'mysql', 'sqlite'); ?>/> <label class="mysql" for="mysql">MySQL</label> <?php endif; ?> <?php endif; ?> @@ -88,7 +94,8 @@ <input type="hidden" id="dbtype" name="dbtype" value="pgsql" /> <?php else: ?> <label class="pgsql" for="pgsql">PostgreSQL</label> - <input type="radio" name="dbtype" value='pgsql' id="pgsql" <?php OC_Helper::init_radio('dbtype', 'pgsql', 'sqlite'); ?>/> + <input type="radio" name="dbtype" value='pgsql' id="pgsql" + <?php OC_Helper::init_radio('dbtype', 'pgsql', 'sqlite'); ?>/> <?php endif; ?> <?php endif; ?> @@ -98,7 +105,8 @@ <input type="hidden" id="dbtype" name="dbtype" value="oci" /> <?php else: ?> <label class="oci" for="oci">Oracle</label> - <input type="radio" name="dbtype" value='oci' id="oci" <?php OC_Helper::init_radio('dbtype', 'oci', 'sqlite'); ?>/> + <input type="radio" name="dbtype" value='oci' id="oci" + <?php OC_Helper::init_radio('dbtype', 'oci', 'sqlite'); ?>/> <?php endif; ?> <?php endif; ?> </div> @@ -107,15 +115,19 @@ <div id="use_other_db"> <p class="infield grouptop"> <label for="dbuser" class="infield"><?php echo $l->t( 'Database user' ); ?></label> - <input type="text" name="dbuser" id="dbuser" value="<?php print OC_Helper::init_var('dbuser'); ?>" autocomplete="off" /> + <input type="text" name="dbuser" id="dbuser" + value="<?php print OC_Helper::init_var('dbuser'); ?>" autocomplete="off" /> </p> <p class="infield groupmiddle"> <label for="dbpass" class="infield"><?php echo $l->t( 'Database password' ); ?></label> - <input type="password" name="dbpass" id="dbpass" value="<?php print OC_Helper::init_var('dbpass'); ?>" /> + <input type="password" name="dbpass" id="dbpass" + value="<?php print OC_Helper::init_var('dbpass'); ?>" /> </p> <p class="infield groupmiddle"> <label for="dbname" class="infield"><?php echo $l->t( 'Database name' ); ?></label> - <input type="text" name="dbname" id="dbname" value="<?php print OC_Helper::init_var('dbname'); ?>" autocomplete="off" pattern="[0-9a-zA-Z$_-]+" /> + <input type="text" name="dbname" id="dbname" + value="<?php print OC_Helper::init_var('dbname'); ?>" + autocomplete="off" pattern="[0-9a-zA-Z$_-]+" /> </p> </div> <?php endif; ?> @@ -123,13 +135,15 @@ <div id="use_oracle_db"> <p class="infield groupmiddle"> <label for="dbtablespace" class="infield"><?php echo $l->t( 'Database tablespace' ); ?></label> - <input type="text" name="dbtablespace" id="dbtablespace" value="<?php print OC_Helper::init_var('dbtablespace'); ?>" autocomplete="off" /> + <input type="text" name="dbtablespace" id="dbtablespace" + value="<?php print OC_Helper::init_var('dbtablespace'); ?>" autocomplete="off" /> </p> </div> <?php endif; ?> <p class="infield groupbottom"> <label for="dbhost" class="infield" id="dbhostlabel"><?php echo $l->t( 'Database host' ); ?></label> - <input type="text" name="dbhost" id="dbhost" value="<?php print OC_Helper::init_var('dbhost', 'localhost'); ?>" /> + <input type="text" name="dbhost" id="dbhost" + value="<?php print OC_Helper::init_var('dbhost', 'localhost'); ?>" /> </p> </fieldset> |