mirror of
https://github.com/tlsnotary/PageSigner.git
synced 2026-01-09 14:48:07 -05:00
Often the user may want to see what the notarization result will look like without spending time on the 2PC protocol. This adds a "Preview" menu item to allow to do that.
31 lines
902 B
HTML
31 lines
902 B
HTML
<script type="module" src="../DetailsViewer.js"></script>
|
|
|
|
<style>
|
|
.btn{
|
|
background: inherit;
|
|
border-radius: 8px;
|
|
}
|
|
.btn:hover{
|
|
cursor:pointer;
|
|
}
|
|
</style>
|
|
|
|
<body>
|
|
|
|
<div style="word-break: break-all; white-space: pre-wrap;">
|
|
<h3>-------------------Notarization time-------------------</h3>
|
|
<text id="notarization_time"></text>
|
|
<h3>-------------------Client request:---------------------</h3>
|
|
<text id="request"></text>
|
|
<h3>-------------------Server response:--------------------</h3>
|
|
<text id="response"></text>
|
|
</div>
|
|
|
|
<plaintext id="lolz" hidden>lol</plaintext>
|
|
|
|
<div id="showBar" hidden style="top: 0; position:fixed; width: 100%; background-color: #F9F9FB; box-shadow: 0 6px 4px -4px black; z-index:999">
|
|
<text>
|
|
Pagesigner verified that this page was received from
|
|
</text>
|
|
</div>
|
|
</body> |