|
|
|
@ -41,14 +41,14 @@ script('core', [ |
|
|
|
<input type="text" name="adminlogin" id="adminlogin" |
|
|
|
placeholder="<?php p($l->t( 'Username' )); ?>" |
|
|
|
value="<?php p($_['adminlogin']); ?>" |
|
|
|
autocomplete="off" autocapitalize="off" autocorrect="off" autofocus required> |
|
|
|
autocomplete="off" autocapitalize="none" autocorrect="off" autofocus required> |
|
|
|
<label for="adminlogin" class="infield"><?php p($l->t( 'Username' )); ?></label>
|
|
|
|
</p> |
|
|
|
<p class="groupbottom"> |
|
|
|
<input type="password" name="adminpass" data-typetoggle="#show" id="adminpass" |
|
|
|
placeholder="<?php p($l->t( 'Password' )); ?>" |
|
|
|
value="<?php p($_['adminpass']); ?>" |
|
|
|
autocomplete="off" autocapitalize="off" autocorrect="off" required> |
|
|
|
autocomplete="off" autocapitalize="none" autocorrect="off" required> |
|
|
|
<label for="adminpass" class="infield"><?php p($l->t( 'Password' )); ?></label>
|
|
|
|
<input type="checkbox" id="show" name="show"> |
|
|
|
<label for="show"></label> |
|
|
|
@ -68,7 +68,7 @@ script('core', [ |
|
|
|
<input type="text" name="directory" id="directory" |
|
|
|
placeholder="<?php p(OC::$SERVERROOT.'/data'); ?>" |
|
|
|
value="<?php p($_['directory']); ?>" |
|
|
|
autocomplete="off" autocapitalize="off" autocorrect="off"> |
|
|
|
autocomplete="off" autocapitalize="none" autocorrect="off"> |
|
|
|
</div> |
|
|
|
</fieldset> |
|
|
|
<?php endif; ?>
|
|
|
|
@ -105,13 +105,13 @@ script('core', [ |
|
|
|
<input type="text" name="dbuser" id="dbuser" |
|
|
|
placeholder="<?php p($l->t( 'Database user' )); ?>" |
|
|
|
value="<?php p($_['dbuser']); ?>" |
|
|
|
autocomplete="off" autocapitalize="off" autocorrect="off"> |
|
|
|
autocomplete="off" autocapitalize="none" autocorrect="off"> |
|
|
|
</p> |
|
|
|
<p class="groupmiddle"> |
|
|
|
<input type="password" name="dbpass" id="dbpass" data-typetoggle="#dbpassword-toggle" |
|
|
|
placeholder="<?php p($l->t( 'Database password' )); ?>" |
|
|
|
value="<?php p($_['dbpass']); ?>" |
|
|
|
autocomplete="off" autocapitalize="off" autocorrect="off"> |
|
|
|
autocomplete="off" autocapitalize="none" autocorrect="off"> |
|
|
|
<label for="dbpass" class="infield"><?php p($l->t( 'Database password' )); ?></label>
|
|
|
|
<input type="checkbox" id="dbpassword-toggle" name="dbpassword-toggle"> |
|
|
|
<label for="dbpassword-toggle"></label> |
|
|
|
@ -121,7 +121,7 @@ script('core', [ |
|
|
|
<input type="text" name="dbname" id="dbname" |
|
|
|
placeholder="<?php p($l->t( 'Database name' )); ?>" |
|
|
|
value="<?php p($_['dbname']); ?>" |
|
|
|
autocomplete="off" autocapitalize="off" autocorrect="off" |
|
|
|
autocomplete="off" autocapitalize="none" autocorrect="off" |
|
|
|
pattern="[0-9a-zA-Z$_-]+"> |
|
|
|
</p> |
|
|
|
<?php if($_['hasOracle']): ?>
|
|
|
|
@ -131,7 +131,7 @@ script('core', [ |
|
|
|
<input type="text" name="dbtablespace" id="dbtablespace" |
|
|
|
placeholder="<?php p($l->t( 'Database tablespace' )); ?>" |
|
|
|
value="<?php p($_['dbtablespace']); ?>" |
|
|
|
autocomplete="off" autocapitalize="off" autocorrect="off"> |
|
|
|
autocomplete="off" autocapitalize="none" autocorrect="off"> |
|
|
|
</p> |
|
|
|
</div> |
|
|
|
<?php endif; ?>
|
|
|
|
@ -140,7 +140,7 @@ script('core', [ |
|
|
|
<input type="text" name="dbhost" id="dbhost" |
|
|
|
placeholder="<?php p($l->t( 'Database host' )); ?>" |
|
|
|
value="<?php p($_['dbhost']); ?>" |
|
|
|
autocomplete="off" autocapitalize="off" autocorrect="off"> |
|
|
|
autocomplete="off" autocapitalize="none" autocorrect="off"> |
|
|
|
</p> |
|
|
|
<p class="info"> |
|
|
|
<?php p($l->t( 'Please specify the port number along with the host name (e.g., localhost:5432).' )); ?>
|
|
|
|
|