diff options
| author | spider <spider@bitweaver.org> | 2014-10-07 18:54:31 -0400 |
|---|---|---|
| committer | spider <spider@bitweaver.org> | 2014-10-07 18:54:31 -0400 |
| commit | 63b6467636035abff64a9c9f58eff7ca9d249b6e (patch) | |
| tree | 075cc60af4916ea51f444628a31f3a472efbeead | |
| parent | e01f890592d602f22bde437e9b469f806983aa61 (diff) | |
| parent | 2b4fbb65762a0fdcd7dc343c33640ae3f7e6d07e (diff) | |
| download | install-63b6467636035abff64a9c9f58eff7ca9d249b6e.tar.gz install-63b6467636035abff64a9c9f58eff7ca9d249b6e.tar.bz2 install-63b6467636035abff64a9c9f58eff7ca9d249b6e.zip | |
Merge branch 'master' of github.com:bitweaver/install
| -rw-r--r-- | templates/install.tpl | 2 | ||||
| -rw-r--r-- | templates/install_bit_settings.tpl | 10 | ||||
| -rw-r--r-- | templates/install_database.tpl | 2 |
3 files changed, 7 insertions, 7 deletions
diff --git a/templates/install.tpl b/templates/install.tpl index 17fe1ce..48281d7 100644 --- a/templates/install.tpl +++ b/templates/install.tpl @@ -75,7 +75,7 @@ <div class="container"> <section class="row maincontent"> - <div class="col-xs-12 col-sm-9"> + <div class="col-xs-12"> {include file=$install_file} </div> <section> diff --git a/templates/install_bit_settings.tpl b/templates/install_bit_settings.tpl index af338d0..b369843 100644 --- a/templates/install_bit_settings.tpl +++ b/templates/install_bit_settings.tpl @@ -18,7 +18,7 @@ <div class="form-group"> {formlabel label="Browser Title" for="site_title"} {forminput} - <input size="40" type="text" name="site_title" id="site_title" value="{$gBitSystem->getConfig('site_title')|escape}" /> + <input class="form-control" type="text" name="site_title" id="site_title" value="{$gBitSystem->getConfig('site_title')|escape}" /> {formhelp note="Enter the text that should appear in the title bar of the user's browser when visiting your site."} {/forminput} </div> @@ -26,7 +26,7 @@ <div class="form-group"> {formlabel label="Site Slogan" for="site_slogan"} {forminput} - <input size="40" type="text" name="site_slogan" id="site_slogan" value="{$gBitSystem->getConfig('site_slogan')|escape}" /> + <input class="form-control" type="text" name="site_slogan" id="site_slogan" value="{$gBitSystem->getConfig('site_slogan')|escape}" /> {formhelp note="This slogan is (usually) shown below the site title."} {/forminput} </div> @@ -34,7 +34,7 @@ <div class="form-group"> {formlabel label="Home Page" for="bit_index"} {forminput} - <select name="bit_index" id="bit_index"> + <select name="bit_index" id="bit_index" class="form-control"> <option value="my_home"{if $bit_index eq 'my_home'} selected="selected"{/if}>{tr}My home{/tr}</option> {if $smarty.const.ROLE_MODEL} <option value="role_home"{if $bit_index eq 'role_home'} selected="selected"{/if}>{tr}Role home{/tr}</option> @@ -62,7 +62,7 @@ <div class="form-group"> {formlabel label="Site Style" for="site_style"} {forminput} - <select name="site_style" id="site_style"> + <select name="site_style" id="site_style" class="form-control"> {foreach from=$stylesList item=s} <option value="{$s.style}" {if $s.style eq "basic"}selected="selected"{/if}>{$s.style}</option> {/foreach} @@ -74,7 +74,7 @@ <div class="form-group"> {formlabel label="Language" for="language"} {forminput} - <select name="bitlanguage" id="bitlanguage"> + <select name="bitlanguage" id="bitlanguage" class="form-control"> {foreach from=$languages key=langCode item=lang} <option value="{$langCode}" {if $langCode eq "en"}selected="selected"{/if}>{$lang.full_name|escape}</option> {/foreach} diff --git a/templates/install_database.tpl b/templates/install_database.tpl index 4fc890f..3097abf 100644 --- a/templates/install_database.tpl +++ b/templates/install_database.tpl @@ -51,7 +51,7 @@ <p class="alert alert-block">If you intend to upgrade an existing MySQL database, the required server version is greater than 4.1.</p> {/if} {if $dbservers} - {html_options name='db' options=$dbservers id=db selected=$gBitDbType style="width:50%"} + {html_options name='db' options=$dbservers id=db selected=$gBitDbType class="form-control"} {formhelp note="The type of database you intend to use."} {if $mysqlWarning} <p class="alert alert-block"> |
