Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Install] Configuration options don't render properly on large screen sizes #8986

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 19 additions & 19 deletions smarty/templates/install.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -139,67 +139,67 @@
<form method="post">
<fieldset>
<legend>MySQL Connection Information</legend>
<div>
<div class="col-md-2">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<div class="col-xs-2 col-sm-2 col-md-2 col-lg-2">
<label for="serverhost">Server Hostname:</label>
</div>
<div class="col-md-10">
<div class="col-xs-10 col-sm-10 col-md-10 col-lg-10">
<input id="serverhost" value="{$dbhost}" type="text" name="dbhost" placeholder="ie. localhost">
</div>
</div>
<div>
<div class="col-md-2">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<div class="col-xs-2 col-sm-2 col-md-2 col-lg-2">
<label for="serveruser">Admin Username:</label>
</div>
<div class="col-md-10">
<div class="col-xs-10 col-sm-10 col-md-10 col-lg-10">
<input id="serveruser" value="{$dbadminuser}" name="dbadminuser" type="text" placeholder="ie. root">
</div>
</div>
<div>
<div class="col-md-2">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<div class="col-xs-2 col-sm-2 col-md-2 col-lg-2">
<label for="serverpassword">Admin Password:</label>
</div>
<div class="col-md-10">
<div class="col-xs-10 col-sm-10 col-md-10 col-lg-10">
<input id="serverpassword" value="{$dbadminpassword}" type="password" name="dbadminpassword" placeholder="ie. LORISISTHEBEST!!!1">
</div>
</div>
<div>
<div class="col-md-2">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<div class="col-xs-2 col-sm-2 col-md-2 col-lg-2">
<label for="dbname">Database name:</label>
</div>
<div class="col-md-10">
<div class="col-xs-10 col-sm-10 col-md-10 col-lg-10">
<input id="dbname" value="{if $dbname}{$dbname}{else}LORIS{/if}" type="text" name="dbname">
</div>
</div>
</fieldset>
<fieldset>
<legend>Options</legend>
<div class="col-md-12">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<label for="use_existing_database">Use existing database:</label>
</div>
<div class="col-md-12">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<input type="checkbox" id="use_existing_database" name="use_existing_database" value="on" {($use_existing_database == 'on') ? 'checked' : ''}/>
Check this if the database already exists but does not have Loris installed yet
</div>
<div class="col-md-12">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<label for="use_existing_tables">Use existing tables:</label>
</div>
<div class="col-md-12">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<input type="checkbox" id="use_existing_tables" name="use_existing_tables" value="on" {($use_existing_tables == 'on') ? 'checked' : ''}/>
Check this if you already installed Loris at the specified database
</div>
<div class="col-md-12">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<label for="use_existing_configs">Use existing configs:</label>
</div>
<div class="col-md-12">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<input type="checkbox" id="use_existing_configs" name="use_existing_configs" value="on" {($do_not_update_config == 'on') ? 'checked' : ''}/>
Check this if you don't want to update the configuration.
<em>(You really should update the configuration if possible, though)</em>
</div>
</fieldset>
<input type="hidden" name="formname" value="validaterootaccount" />
<hr/>
<div class="col-md-12">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<input class="btn btn-submit btn-default" type="submit" />
</div>
</form>
Expand Down