Commit 867b0c66 authored by Romain Porte's avatar Romain Porte
Browse files

claim.html: only show the main key fingerprint

Without this additional command, then the subkey fingerprints will be
listed as well, making the user not sure about which fingerprint to use.

Closes #47.
parent 874bb16f
...@@ -16,7 +16,7 @@ fix this situation.</p> ...@@ -16,7 +16,7 @@ fix this situation.</p>
and I would like to find out using your GPG key. Please enter the fingerprint and I would like to find out using your GPG key. Please enter the fingerprint
in this form (just the hexadecimal digits, as in:</p> in this form (just the hexadecimal digits, as in:</p>
<pre>LANG=en gpg --fingerprint $YOUR_KEYID | sed -nre 's/Key fingerprint =//p'</pre> <pre>LANG=en gpg --fingerprint $YOUR_KEYID | sed -nre 's/Key fingerprint =//p' | head -n1</pre>
<form action="" method="POST">{% csrf_token %} <form action="" method="POST">{% csrf_token %}
{{form.as_p}} {{form.as_p}}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment