Files
pastepass/views/paste.templ

23 lines
726 B
Plaintext

package views
templ PasteSuccess(url string) {
@base() {
<div style="padding-bottom: 5rem;">
<hgroup>
<h3>Paste Created</h3>
<p>
<small style="color: #8891A4;">
Your secret paste has been created. Share the following link with the recipient:
</small>
</p>
</hgroup>
<div>
<pre id="url" style="padding: 1rem; min-height: 3rem;">{url}</pre>
<div>
<button onclick="copyText(this, '#url')" data-copy-label="Copy URL" data-tooltip="Click to copy">Copy URL</button>
<a href={ templ.SafeURL(url) } style="margin-left: 1rem;">View Paste</a>
</div>
</div>
</div>
}
}