ispt4.0_laravel/resources/views/workstations/TE5.blade.php
2023-10-04 16:03:20 +01:00

60 lines
3.0 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">TE5 - Limpeza e lavagem dos componentes</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="cleaning-executed-yes" name="cleaning-executed"
required>
<label value="Sim" for="cleaning-executed-yes">Sim</label>
</div>
<div class="icheck-primary d-inline">
<input type="radio" id="cleaning-executed-no" name="cleaning-executed">
<label value="Não" for="cleaning-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