35468be19f
- modifica alert display come componente (test a tempo...)
27 lines
1.1 KiB
Plaintext
27 lines
1.1 KiB
Plaintext
@if (showRequest)
|
|
{
|
|
<div class="d-flex justify-content-around" style="z-index: 9999;">
|
|
<div class="toast bg-light border border-3 border-warning" role="alert" aria-live="assertive" aria-atomic="true" style="display: block; position: absolute;">
|
|
<div class="toast-header bg-warning">
|
|
<strong class="me-auto text-light">Chiusura ODL</strong>
|
|
<small class="text-light">@($"{DateTime.Now:yyyy.MM.dd HH:mm:ss}")</small>
|
|
<button type="button" class="btn-close" data-bs-dismiss="toast" aria-label="Close"></button>
|
|
</div>
|
|
<div class="toast-body">
|
|
Rilevato possibile fine operazioni, Vuoi chiudere la commessa?
|
|
<br />
|
|
<br />
|
|
<br />
|
|
<div class="row">
|
|
<div class="btn-group" role="group">
|
|
<button class="btn btn-sm btn-success col-6">CONFERMA</button>
|
|
<button class="btn btn-sm btn-danger col-6">ANNULLA</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
}
|
|
|
|
|