60 lines
2.9 KiB
PHP
60 lines
2.9 KiB
PHP
@extends('Templates.templateWorkstations')
|
|
@section('content')
|
|
<!-- Main content -->
|
|
<section class="content">
|
|
<div class="row justify-content-center align-items-center">
|
|
<div class="col-6">
|
|
|
|
<!-- Workstation card -->
|
|
<div class="card card-info">
|
|
<div class="card-header">
|
|
<div class="d-flex justify-content-between align-items-center" style="width: 100%;">
|
|
<h3 class="card-title mb-0">TE9 - Pintura</h3>
|
|
<span>Válvula XXXXX</span>
|
|
</div>
|
|
</div>
|
|
<form id="myForm">
|
|
<div class="card-body">
|
|
<div class="form-group"> <!-- Single form-group for all content -->
|
|
|
|
<!-- Executado -->
|
|
<div class="row mb-3 mt-3">
|
|
<div class="col-md-6 d-flex align-items-center">
|
|
<label>Executado? <span style="color: red;">*</span></label>
|
|
</div>
|
|
<div class="col-md-6">
|
|
<div class="icheck-primary d-inline mr-2">
|
|
<input type="radio" id="executed-yes" name="executed" required>
|
|
<label value="Sim" for="executed-yes">Sim</label>
|
|
</div>
|
|
<div class="icheck-primary d-inline mr-2">
|
|
<input type="radio" id="executed-no" name="executed">
|
|
<label value="Não" for="executed-no">Não</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- ./ Executado -->
|
|
|
|
|
|
</div> <!-- End of single form-group -->
|
|
</div>
|
|
<div class="card-footer d-flex justify-content-between">
|
|
<!-- Left-aligned button -->
|
|
<button type="button" class="btn btn-primary">Voltar</button>
|
|
|
|
<!-- Center-aligned button (using `mx-auto` to push it to the center) -->
|
|
<button type="button" class="btn btn-primary mx-auto">Devolver</button>
|
|
|
|
<!-- Right-aligned button -->
|
|
<button type="submit" class="btn btn-primary">Seguinte</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<!-- ./ Workstation card-->
|
|
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<!-- /.content -->
|
|
@endsection
|