verify.html (457B)
1 {% extends "page.html" %} 2 3 {% block content %} 4 <h2>PGP Verification</h2> 5 6 <p>Decrypt the message below using your private key and paste the result.</p> 7 8 <textarea rows="10" cols="80" readonly> 9 {{ encrypted_message }} 10 </textarea> 11 12 <form method="POST" action="{{ url_for('verify') }}"> 13 <textarea name="decrypted_message" placeholder="Paste decrypted message here" required></textarea><br> 14 <button type="submit">Verify</button> 15 </form> 16 17 {% endblock %}