85 lines
4.3 KiB
PHP
85 lines
4.3 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">TE6 - PSV - Retificação e limpeza</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 -->
|
|
|
|
<div class="row mb-3 mt-3 col-md-12">
|
|
<label>Sede</label>
|
|
</div>
|
|
|
|
<!-- Diâmetro interior (mm) -->
|
|
<div class="row mb-3">
|
|
<div class="col-md-6">
|
|
<label>Diâmetro interior (mm) <span style="color: red;">*</span></label>
|
|
</div>
|
|
<div class="col-md-6 d-flex align-items-center">
|
|
<input id="seat-phi-int" name="seat-phi-int" type="number" step="0.01"
|
|
class="form-control" style="width: 100%;" placeholder="" required>
|
|
</div>
|
|
</div>
|
|
<!-- ./ Diâmetro interior (mm) -->
|
|
|
|
<!-- Diâmetro exterior (mm) -->
|
|
<div class="row mb-3">
|
|
<div class="col-md-6">
|
|
<label>Diâmetro exterior (mm) <span style="color: red;">*</span></label>
|
|
</div>
|
|
<div class="col-md-6 d-flex align-items-center">
|
|
<input id="seat-phi-ext" name="seat-phi-ext" type="number" step="0.01"
|
|
class="form-control" style="width: 100%;" placeholder="" required>
|
|
</div>
|
|
</div>
|
|
<!-- ./ Diâmetro iexterior (mm) -->
|
|
|
|
<div class="row mb-3 mt-3 col-md-12">
|
|
<label>Obturador</label>
|
|
</div>
|
|
|
|
<!-- Ressalto (mm) -->
|
|
<div class="row mb-3">
|
|
<div class="col-md-6">
|
|
<label>Ressalto (mm) <span style="color: red;">*</span></label>
|
|
</div>
|
|
<div class="col-md-6 d-flex align-items-center">
|
|
<input id="shutter-cam" name="shutter-cam" type="number" step="0.01"
|
|
class="form-control" style="width: 100%;" placeholder="" required>
|
|
</div>
|
|
</div>
|
|
<!-- ./ Ressalto (mm) -->
|
|
|
|
</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
|