64 lines
3.1 KiB
PHP
64 lines
3.1 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">TE11 - Inspeção final</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 -->
|
|
|
|
<!-- Verificar o aperto das flanges -->
|
|
<div class="row mb-3">
|
|
<div class="col-md-6 icheck-primary">
|
|
<input id="confirm-checkbox" type="checkbox" name="confirm-checkbox" value="1"
|
|
required>
|
|
<label for="confirm-checkbox">Verificar o aperto das flanges <span
|
|
style="color: red;">*</span></label>
|
|
</div>
|
|
</div>
|
|
<!-- ./ Verificar o aperto das flanges -->
|
|
|
|
<!-- Verificar o alinhamento das flanges -->
|
|
<div class="row mb-3">
|
|
<div class="col-md-6 icheck-primary">
|
|
<input id="confirm-checkbox" type="checkbox" name="confirm-checkbox" value="1"
|
|
required>
|
|
<label for="confirm-checkbox">Verificar o alinhamento das flanges <span
|
|
style="color: red;">*</span></label>
|
|
</div>
|
|
</div>
|
|
<!-- ./ Verificar o alinhamento das flanges -->
|
|
|
|
|
|
</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
|