Fix some accessibility issues
This commit is contained in:
@@ -16,8 +16,8 @@ use CachetHQ\Cachet\Bus\Commands\IncidentUpdate\CreateIncidentUpdateCommand;
|
|||||||
use CachetHQ\Cachet\Bus\Commands\IncidentUpdate\UpdateIncidentUpdateCommand;
|
use CachetHQ\Cachet\Bus\Commands\IncidentUpdate\UpdateIncidentUpdateCommand;
|
||||||
use CachetHQ\Cachet\Integrations\Contracts\System;
|
use CachetHQ\Cachet\Integrations\Contracts\System;
|
||||||
use CachetHQ\Cachet\Models\Incident;
|
use CachetHQ\Cachet\Models\Incident;
|
||||||
use CachetHQ\Cachet\Models\IncidentUpdate;
|
|
||||||
use CachetHQ\Cachet\Models\IncidentTemplate;
|
use CachetHQ\Cachet\Models\IncidentTemplate;
|
||||||
|
use CachetHQ\Cachet\Models\IncidentUpdate;
|
||||||
use GrahamCampbell\Binput\Facades\Binput;
|
use GrahamCampbell\Binput\Facades\Binput;
|
||||||
use Illuminate\Contracts\Auth\Guard;
|
use Illuminate\Contracts\Auth\Guard;
|
||||||
use Illuminate\Routing\Controller;
|
use Illuminate\Routing\Controller;
|
||||||
|
|||||||
@@ -25,7 +25,7 @@
|
|||||||
<fieldset>
|
<fieldset>
|
||||||
@if($incidentTemplates->count() > 0)
|
@if($incidentTemplates->count() > 0)
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="incident-template">{{ trans('forms.incidents.templates.template') }}</label>
|
<label for="template">{{ trans('forms.incidents.templates.template') }}</label>
|
||||||
<select class="form-control" name="template" v-model="template">
|
<select class="form-control" name="template" v-model="template">
|
||||||
<option selected></option>
|
<option selected></option>
|
||||||
@foreach($incidentTemplates as $tpl)
|
@foreach($incidentTemplates as $tpl)
|
||||||
|
|||||||
@@ -25,7 +25,7 @@
|
|||||||
<fieldset>
|
<fieldset>
|
||||||
@if($incidentTemplates->count() > 0)
|
@if($incidentTemplates->count() > 0)
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="incident-template">{{ trans('forms.incidents.templates.template') }}</label>
|
<label for="template">{{ trans('forms.incidents.templates.template') }}</label>
|
||||||
<select class="form-control" name="template" v-model="template">
|
<select class="form-control" name="template" v-model="template">
|
||||||
<option selected></option>
|
<option selected></option>
|
||||||
@foreach($incidentTemplates as $tpl)
|
@foreach($incidentTemplates as $tpl)
|
||||||
@@ -96,7 +96,7 @@
|
|||||||
</div>
|
</div>
|
||||||
@endif
|
@endif
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label>{{ trans('forms.incidents.message') }}</label>
|
<label for="message">{{ trans('forms.incidents.message') }}</label>
|
||||||
<div class="markdown-control">
|
<div class="markdown-control">
|
||||||
<textarea name="message" class="form-control autosize" rows="5" required>{{ Binput::old('message') }}</textarea>
|
<textarea name="message" class="form-control autosize" rows="5" required>{{ Binput::old('message') }}</textarea>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user