26 lines
835 B
Plaintext
26 lines
835 B
Plaintext
@page "/HwPdfConfirm"
|
|
|
|
@if (currDoorOp != null)
|
|
{
|
|
<div>
|
|
<div class="col-12 text-center mb-2">
|
|
@if (reqConf)
|
|
{
|
|
<button class="btn btn-outline-dark" style="cursor: pointer;" @onclick="()=>doConfirm()">
|
|
Press <b>HERE to CONFIRM</b> after reading the whole Document
|
|
</button>
|
|
}
|
|
else
|
|
{
|
|
<button class="btn btn-outline-primary" style="cursor: pointer;" @onclick="()=>doClose()">
|
|
Press <b>here</b> to close the Document
|
|
</button>
|
|
|
|
}
|
|
</div>
|
|
<div class="bg-light p-1">
|
|
@* <b>@docUrl</b> *@
|
|
<PdfDisplay Width="100%" PdfUrl="@docUrl" HeightList="@heightList"></PdfDisplay>
|
|
</div>
|
|
</div>
|
|
} |