parent
4de7009014
commit
c350301342
@ -1,85 +1,82 @@ |
||||
<div id="login"> |
||||
<header><img src="<?php echo image_path('', 'owncloud-logo-medium-white.png'); ?>" alt="ownCloud" /></header>
|
||||
<form action="index.php" method="post"> |
||||
|
||||
<input type="hidden" name="install" value="true" /> |
||||
<?php if(count($_['errors']) > 0): ?> |
||||
<ul class="errors"> |
||||
<?php foreach($_['errors'] as $err): ?> |
||||
<li> |
||||
<?php if(is_array($err)):?> |
||||
<?php print $err['error']; ?> |
||||
<p class='hint'><?php print $err['hint']; ?></p>
|
||||
<?php else: ?> |
||||
<?php print $err; ?> |
||||
<?php endif; ?> |
||||
</li> |
||||
<?php endforeach; ?> |
||||
</ul> |
||||
<?php endif; ?> |
||||
<form action="index.php" method="post"> |
||||
|
||||
<fieldset> |
||||
<legend><?php echo $l->t( 'Create an <strong>admin account</strong>' ); ?></legend>
|
||||
<input type="text" name="adminlogin" id="adminlogin" value="<?php print OC_Helper::init_var('adminlogin'); ?>" placeholder="<?php echo $l->t( 'Username' ); ?>" autofocus /></p>
|
||||
<input type="password" name="adminpass" id="adminpass" value="<?php print OC_Helper::init_var('adminpass'); ?>" placeholder="<?php echo $l->t( 'Password' ); ?>" /></p>
|
||||
</fieldset> |
||||
|
||||
<a id='showAdvanced'><strong><?php echo $l->t( 'Advanced' ); ?> ▾</strong></a>
|
||||
|
||||
<fieldset id='datadirField'> |
||||
<legend><?php echo $l->t( 'Set data folder' ); ?></legend>
|
||||
<input type="text" name="directory" id="directory" value="<?php print OC_Helper::init_var('directory', $_['directory']); ?>" placeholder="<?php echo $l->t( 'Data folder' ); ?>" /></p>
|
||||
</fieldset> |
||||
|
||||
<fieldset id='databaseField'> |
||||
<legend><?php echo $l->t( 'Configure the database' ); ?></legend>
|
||||
<?php if($_['hasSQLite']): ?> |
||||
<input type='hidden' id='hasSQLite' value='true'/> |
||||
<?php if(!$_['hasMySQL'] and !$_['hasPostgreSQL']): ?> |
||||
<p><?php echo $l->t( 'SQLite will be used.' ); ?></p>
|
||||
<input type="hidden" id="dbtype" name="dbtype" value="sqlite" /> |
||||
<input type="hidden" name="install" value="true" /> |
||||
<?php if(count($_['errors']) > 0): ?> |
||||
<ul class="errors"> |
||||
<?php foreach($_['errors'] as $err): ?> |
||||
<li> |
||||
<?php if(is_array($err)):?> |
||||
<?php print $err['error']; ?> |
||||
<p class='hint'><?php print $err['hint']; ?></p>
|
||||
<?php else: ?> |
||||
<p><label class="sqlite" for="sqlite"><?php echo $l->t( 'SQLite' ); ?></label><input type="radio" name="dbtype" value='sqlite' id="sqlite" <?php OC_Helper::init_radio('dbtype', 'sqlite', 'sqlite'); ?>/></p>
|
||||
<?php endif; ?> |
||||
<?php print $err; ?> |
||||
<?php endif; ?> |
||||
</li> |
||||
<?php endforeach; ?> |
||||
</ul> |
||||
<?php endif; ?> |
||||
|
||||
<?php if($_['hasMySQL']): ?> |
||||
<input type='hidden' id='hasMySQL' value='true'/> |
||||
<?php if(!$_['hasSQLite'] and !$_['hasPostgreSQL']): ?> |
||||
<p><?php echo $l->t( 'MySQL will be used.' ); ?></p>
|
||||
<input type="hidden" id="dbtype" name="dbtype" value="mysql" /> |
||||
<?php else: ?> |
||||
<label class="mysql" for="mysql">MySQL</label><input type="radio" name="dbtype" value='mysql' id="mysql" <?php OC_Helper::init_radio('dbtype','pgsql', 'mysql', 'sqlite'); ?>/>
|
||||
<?php endif; ?> |
||||
<div id="use_mysql"> |
||||
<input type="text" name="dbuser" id="dbuser" value="<?php print OC_Helper::init_var('dbuser'); ?>" placeholder="<?php echo $l->t( 'Database user' ); ?>" />
|
||||
<input type="password" name="dbpass" id="dbpass" value="<?php print OC_Helper::init_var('dbpass'); ?>" placeholder="<?php echo $l->t( 'Database password' ); ?>" />
|
||||
<input type="text" name="dbname" id="dbname" value="<?php print OC_Helper::init_var('dbname'); ?>" placeholder="<?php echo $l->t( 'Database name' ); ?>" />
|
||||
<input type="text" name="dbhost" id="dbhost" value="<?php print OC_Helper::init_var('dbhost', 'localhost'); ?>" placeholder="<?php echo $l->t( 'Host' ); ?>" />
|
||||
<input type="text" name="dbtableprefix" id="dbtableprefix" value="<?php print OC_Helper::init_var('dbtableprefix', 'oc_'); ?>" placeholder="<?php echo $l->t( 'Table prefix' ); ?>" />
|
||||
|
||||
</div> |
||||
<?php endif; ?> |
||||
<fieldset> |
||||
<legend><?php echo $l->t( 'Create an <strong>admin account</strong>' ); ?></legend>
|
||||
<input type="text" name="adminlogin" id="adminlogin" value="<?php print OC_Helper::init_var('adminlogin'); ?>" placeholder="<?php echo $l->t( 'Username' ); ?>" autofocus /></p>
|
||||
<input type="password" name="adminpass" id="adminpass" value="<?php print OC_Helper::init_var('adminpass'); ?>" placeholder="<?php echo $l->t( 'Password' ); ?>" /></p>
|
||||
</fieldset> |
||||
|
||||
<?php if($_['hasPostgreSQL']): ?> |
||||
<input type='hidden' id='hasPostgreSQL' value='true'/> |
||||
<?php if(!$_['hasSQLite'] and !$_['hasSQLite']): ?> |
||||
<p><?php echo $l->t( 'PostgreSQL will be used.' ); ?></p>
|
||||
<input type="hidden" id="dbtype" name="dbtype" value="pgsql" /> |
||||
<?php else: ?> |
||||
<p><label class="pgsql" for="pgsql">PostgreSQL</label><input type="radio" name="dbtype" value='pgsql' id="pgsql" <?php OC_Helper::init_radio('dbtype','pgsql', 'mysql', 'sqlite'); ?>/></p>
|
||||
<?php endif; ?> |
||||
<div id="use_postgresql"> |
||||
<input type="text" name="pg_dbuser" id="pg_dbuser" value="<?php print OC_Helper::init_var('dbuser'); ?>" placeholder="<?php echo $l->t( 'Database user' ); ?>" />
|
||||
<input type="password" name="pg_dbpass" id="pg_dbpass" value="<?php print OC_Helper::init_var('dbpass'); ?>" placeholder="<?php echo $l->t( 'PostgreSQL password' ); ?>" />
|
||||
<input type="text" name="pg_dbname" id="pg_dbname" value="<?php print OC_Helper::init_var('dbname'); ?>" placeholder="<?php echo $l->t( 'Database name' ); ?>" />
|
||||
<input type="text" name="pg_dbhost" id="pg_dbhost" value="<?php print OC_Helper::init_var('dbhost', 'localhost'); ?>" placeholder="<?php echo $l->t( 'Host' ); ?>" />
|
||||
<input type="text" name="pg_dbtableprefix" id="pg_dbtableprefix" value="<?php print OC_Helper::init_var('dbtableprefix', 'oc_'); ?>" placeholder="<?php echo $l->t( 'Table prefix' ); ?>" />
|
||||
|
||||
</div> |
||||
<?php endif; ?> |
||||
</fieldset> |
||||
<a id='showAdvanced'><strong><?php echo $l->t( 'Advanced' ); ?> ▾</strong></a>
|
||||
|
||||
<fieldset id='datadirField'> |
||||
<legend><?php echo $l->t( 'Set data folder' ); ?></legend>
|
||||
<input type="text" name="directory" id="directory" value="<?php print OC_Helper::init_var('directory', $_['directory']); ?>" placeholder="<?php echo $l->t( 'Data folder' ); ?>" /></p>
|
||||
</fieldset> |
||||
|
||||
<fieldset id='databaseField'> |
||||
<legend><?php echo $l->t( 'Configure the database' ); ?></legend>
|
||||
<?php if($_['hasSQLite']): ?> |
||||
<input type='hidden' id='hasSQLite' value='true'/> |
||||
<?php if(!$_['hasMySQL'] and !$_['hasPostgreSQL']): ?> |
||||
<p><?php echo $l->t( 'SQLite will be used.' ); ?></p>
|
||||
<input type="hidden" id="dbtype" name="dbtype" value="sqlite" /> |
||||
<?php else: ?> |
||||
<p><label class="sqlite" for="sqlite"><?php echo $l->t( 'SQLite' ); ?></label><input type="radio" name="dbtype" value='sqlite' id="sqlite" <?php OC_Helper::init_radio('dbtype', 'sqlite', 'sqlite'); ?>/></p>
|
||||
<?php endif; ?> |
||||
<?php endif; ?> |
||||
|
||||
<?php if($_['hasMySQL']): ?> |
||||
<input type='hidden' id='hasMySQL' value='true'/> |
||||
<?php if(!$_['hasSQLite'] and !$_['hasPostgreSQL']): ?> |
||||
<p><?php echo $l->t( 'MySQL will be used.' ); ?></p>
|
||||
<input type="hidden" id="dbtype" name="dbtype" value="mysql" /> |
||||
<?php else: ?> |
||||
<label class="mysql" for="mysql">MySQL</label><input type="radio" name="dbtype" value='mysql' id="mysql" <?php OC_Helper::init_radio('dbtype','pgsql', 'mysql', 'sqlite'); ?>/>
|
||||
<?php endif; ?> |
||||
<div id="use_mysql"> |
||||
<input type="text" name="dbuser" id="dbuser" value="<?php print OC_Helper::init_var('dbuser'); ?>" placeholder="<?php echo $l->t( 'Database user' ); ?>" />
|
||||
<input type="password" name="dbpass" id="dbpass" value="<?php print OC_Helper::init_var('dbpass'); ?>" placeholder="<?php echo $l->t( 'Database password' ); ?>" />
|
||||
<input type="text" name="dbname" id="dbname" value="<?php print OC_Helper::init_var('dbname'); ?>" placeholder="<?php echo $l->t( 'Database name' ); ?>" />
|
||||
<input type="text" name="dbhost" id="dbhost" value="<?php print OC_Helper::init_var('dbhost', 'localhost'); ?>" placeholder="<?php echo $l->t( 'Host' ); ?>" />
|
||||
<input type="text" name="dbtableprefix" id="dbtableprefix" value="<?php print OC_Helper::init_var('dbtableprefix', 'oc_'); ?>" placeholder="<?php echo $l->t( 'Table prefix' ); ?>" />
|
||||
|
||||
</div> |
||||
<?php endif; ?> |
||||
|
||||
<?php if($_['hasPostgreSQL']): ?> |
||||
<input type='hidden' id='hasPostgreSQL' value='true'/> |
||||
<?php if(!$_['hasSQLite'] and !$_['hasSQLite']): ?> |
||||
<p><?php echo $l->t( 'PostgreSQL will be used.' ); ?></p>
|
||||
<input type="hidden" id="dbtype" name="dbtype" value="pgsql" /> |
||||
<?php else: ?> |
||||
<p><label class="pgsql" for="pgsql">PostgreSQL</label><input type="radio" name="dbtype" value='pgsql' id="pgsql" <?php OC_Helper::init_radio('dbtype','pgsql', 'mysql', 'sqlite'); ?>/></p>
|
||||
<?php endif; ?> |
||||
<div id="use_postgresql"> |
||||
<input type="text" name="pg_dbuser" id="pg_dbuser" value="<?php print OC_Helper::init_var('dbuser'); ?>" placeholder="<?php echo $l->t( 'Database user' ); ?>" />
|
||||
<input type="password" name="pg_dbpass" id="pg_dbpass" value="<?php print OC_Helper::init_var('dbpass'); ?>" placeholder="<?php echo $l->t( 'PostgreSQL password' ); ?>" />
|
||||
<input type="text" name="pg_dbname" id="pg_dbname" value="<?php print OC_Helper::init_var('dbname'); ?>" placeholder="<?php echo $l->t( 'Database name' ); ?>" />
|
||||
<input type="text" name="pg_dbhost" id="pg_dbhost" value="<?php print OC_Helper::init_var('dbhost', 'localhost'); ?>" placeholder="<?php echo $l->t( 'Host' ); ?>" />
|
||||
<input type="text" name="pg_dbtableprefix" id="pg_dbtableprefix" value="<?php print OC_Helper::init_var('dbtableprefix', 'oc_'); ?>" placeholder="<?php echo $l->t( 'Table prefix' ); ?>" />
|
||||
|
||||
</div> |
||||
<?php endif; ?> |
||||
</fieldset> |
||||
|
||||
<input type="submit" value="<?php echo $l->t( 'Finish setup' ); ?>" />
|
||||
</form> |
||||
</div> |
||||
<input type="submit" value="<?php echo $l->t( 'Finish setup' ); ?>" />
|
||||
</form> |
||||
|
@ -1,23 +1,17 @@ |
||||
<div id="login"> |
||||
<header> |
||||
<img src="<?php echo image_path('', 'owncloud-logo-medium-white.png'); ?>" alt="ownCloud" />
|
||||
</header> |
||||
<form action="index.php" method="post"> |
||||
<fieldset> |
||||
<?php if($_['error']): ?> |
||||
<?php echo $l->t( 'Login failed!' ); ?> |
||||
<?php endif; ?> |
||||
<?php if(empty($_["username"])){?> |
||||
<input type="text" name="user" id="user" placeholder="Username" value="" autocomplete="off" required autofocus /> |
||||
<input type="password" name="password" id="password" placeholder="Password" value="" required /> |
||||
<input type="checkbox" name="remember_login" id="remember_login" /><label for="remember_login"><?php echo $l->t('remember'); ?></label>
|
||||
<?php }else{ ?> |
||||
<input type="text" name="user" id="user" placeholder="Username" value="<?php echo $_['username']; ?>" autocomplete="off" required >
|
||||
<input type="password" name="password" id="password" placeholder="Password" value="" required autofocus /> |
||||
<input type="checkbox" name="remember_login" id="remember_login" checked /><label for="remember_login"><?php echo $l->t('remember'); ?></label>
|
||||
<?php } ?> |
||||
<input type="submit" id="submit" value="Log in" /> |
||||
</fieldset> |
||||
</form> |
||||
</div> |
||||
|
||||
<form action="index.php" method="post"> |
||||
<fieldset> |
||||
<?php if($_['error']): ?> |
||||
<?php echo $l->t( 'Login failed!' ); ?> |
||||
<?php endif; ?> |
||||
<?php if(empty($_["username"])){?> |
||||
<input type="text" name="user" id="user" placeholder="Username" value="" autocomplete="off" required autofocus /> |
||||
<input type="password" name="password" id="password" placeholder="Password" value="" required /> |
||||
<input type="checkbox" name="remember_login" id="remember_login" /><label for="remember_login"><?php echo $l->t('remember'); ?></label>
|
||||
<?php }else{ ?> |
||||
<input type="text" name="user" id="user" placeholder="Username" value="<?php echo $_['username']; ?>" autocomplete="off" required >
|
||||
<input type="password" name="password" id="password" placeholder="Password" value="" required autofocus /> |
||||
<input type="checkbox" name="remember_login" id="remember_login" checked /><label for="remember_login"><?php echo $l->t('remember'); ?></label>
|
||||
<?php } ?> |
||||
<input type="submit" id="submit" value="Log in" /> |
||||
</fieldset> |
||||
</form> |
||||
|
Loading…
Reference in new issue