diff --git a/EnvelopeGenerator.ReceiverUIBlazor/Pages/Index.razor b/EnvelopeGenerator.ReceiverUIBlazor/Pages/Index.razor index 3228d138..fea7170e 100644 --- a/EnvelopeGenerator.ReceiverUIBlazor/Pages/Index.razor +++ b/EnvelopeGenerator.ReceiverUIBlazor/Pages/Index.razor @@ -1,66 +1,70 @@ @page "/" +@using Microsoft.JSInterop @inject IJSRuntime JS +@implements IAsyncDisposable -

Sign PDF (Blazor)

+
+

Sign PDF (Blazor)

-
- - - - - - +
+ + + + + + +
+ + @if (!string.IsNullOrWhiteSpace(ErrorMessage)) + { +
@ErrorMessage
+ } + + @if (!HasPdf) + { +
Drop or select a PDF to start.
+ } + + @if (HasPdf) + { +
+ + + @if (ShowSignature) + { +
+
+ + +
+ +
+ } + + @if (ShowText) + { +
+
+ + +
+ +
+ } +
+ +
+ + Page @DisplayPage / @PageCount + +
+ }
-@if (!string.IsNullOrWhiteSpace(ErrorMessage)) -{ -
@ErrorMessage
-} - -@if (!HasPdf) -{ -
Drop or select a PDF to start.
-} - -@if (HasPdf) -{ -
- - - @if (ShowSignature) - { -
-
- - -
- -
- } - - @if (ShowText) - { -
-
- - -
- -
- } -
- -
- - Page @DisplayPage / @PageCount - -
-} - @if (ShowSignaturePadModal) {