69 lines
3.5 KiB
PHP
69 lines
3.5 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">TE10 - PSV ISV - Montagem na linha</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 -->
|
|
|
|
<!-- Conformidade da etiqueta -->
|
|
<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">Conformidade da etiqueta <span
|
|
style="color: red;">*</span></label>
|
|
</div>
|
|
</div>
|
|
<!-- ./ Conformidade da etiqueta -->
|
|
|
|
<!-- Tipo de junta -->
|
|
<div class="row mt-2">
|
|
<div class="col-md-6">
|
|
<label>Tipo de junta <span style="color: red;">*</span></label>
|
|
</div>
|
|
<div class="col-md-6">
|
|
<select id="gasket-type" name="gasket-type" class="select2" style="width: 100%;"
|
|
required>
|
|
<option selected="selected" disabled hidden value=""></option>
|
|
<option value="Tipo 1">Tipo 1</option>
|
|
<option value="Tipo 2">Tipo 2</option>
|
|
<option value="Tipo 3">Tipo 3</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<!-- ./ Tipo de junta -->
|
|
|
|
</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
|