Remove all trailing / from tags

This commit is contained in:
James Brooks
2015-01-17 19:23:35 +00:00
parent 5ca4e9af3d
commit dedb7b0e3f
20 changed files with 79 additions and 79 deletions
+5 -5
View File
@@ -16,13 +16,13 @@
<div class="col-xs-6">
<div class="form-group">
<label>{{ trans('forms.settings.theme.background-color') }}</label>
<input type="text" class="form-control color-code" name="style.background_color" value="{{ Setting::get('style_background_color') }}" />
<input type="text" class="form-control color-code" name="style.background_color" value="{{ Setting::get('style_background_color') }}">
</div>
</div>
<div class="col-xs-6">
<div class="form-group">
<label>{{ trans('forms.settings.theme.text-color') }}</label>
<input type="text" class="form-control color-code" name="style.text_color" value="{{ Setting::get('style_text_color') }}" />
<input type="text" class="form-control color-code" name="style.text_color" value="{{ Setting::get('style_text_color') }}">
</div>
</div>
</div>
@@ -31,19 +31,19 @@
<div class="col-xs-4">
<div class="form-group">
<label>Success Warning Color</label>
<input type="text" class="form-control color-code" name="style.success_warning_color" value="{{ Setting::get('style_success_warning_color') }}" />
<input type="text" class="form-control color-code" name="style.success_warning_color" value="{{ Setting::get('style_success_warning_color') }}">
</div>
</div>
<div class="col-xs-4">
<div class="form-group">
<label>Error Warning Color</label>
<input type="text" class="form-control color-code" name="style.error_warning_color" value="{{ Setting::get('style_error_warning_color') }}" />
<input type="text" class="form-control color-code" name="style.error_warning_color" value="{{ Setting::get('style_error_warning_color') }}">
</div>
</div>
<div class="col-xs-4">
<div class="form-group">
<label>Info Warning Color</label>
<input type="text" class="form-control color-code" name="style.style_info_warning_color" value="{{ Setting::get('style_info_warning_color') }}" />
<input type="text" class="form-control color-code" name="style.style_info_warning_color" value="{{ Setting::get('style_info_warning_color') }}">
</div>
</div>
</div>