login_verify.html (519B)
1 {% extends "page.html" %} 2 3 {% block content %} 4 <h2>Decrypt Challenge</h2> 5 <p>Copy the message below, decrypt it with your PGP private key, and paste the decrypted message into the box.</p> 6 7 <textarea rows="10" cols="60" readonly>{{ encrypted_message }}</textarea> 8 9 <form method="POST" action="{{ url_for('login_verify') }}"> 10 <label>Decrypted Message:</label><br> 11 <textarea name="decrypted_message" rows="4" cols="60" required></textarea><br><br> 12 <button type="submit">Verify</button> 13 </form> 14 {% endblock %}