File indexing completed on 2025-01-19 04:46:49

0001 <style type="text/css">
0002 .gnupgwksbutton {
0003     display: inline-block !important;
0004     font-weight: bold !important;
0005     padding: 4px 8px !important;
0006     margin-bottom: 4px !important;
0007     border: 1px solid {{ style.buttonBorder }} !important;
0008     border-radius: 3px !important;
0009     background: {{ style.buttonBg }} !important;
0010     vertical-align: middle !important;
0011 }
0012 .gnupgwksbutton:hover{
0013     border-color: {{ style.buttonBorderHl }} !important;
0014 }
0015 .gnupgwksbutton a.button {
0016     color: {{ style.buttonFg }} !important;
0017 }
0018 .gnupgwkserror {
0019     color: {{ style.errorFg }};
0020 }
0021 </style>
0022 
0023 <div style="padding: 5pt; text-align: center">
0024 {% if block.isRequest %}
0025   <div style="font-size: large; padding-bottom: 20pt;">
0026     {% i18n "Register your OpenPGP key with your email provider. " %}
0027   </div>
0028   <div style="padding-bottom: 20pt;">
0029     <p>{% i18n "When you register your key with your email provider other people will then be able to retrieve the key and send you encrypted emails and verify authenticity of emails you send them." %}</p>
0030   </div>
0031   <div style="padding-bottom: 20pt;">
0032     {% if block.hasError %}
0033     <p style="gnupgwkserror">{% i18n "An error occurred while publishing the key. Please try again later." %}</p>
0034     {% else %}
0035     <a class="gnupgwksbutton" href="{{ block.confirmUrl }}">{% i18n "Register the key" %}</a>
0036     <br/><br/>
0037     <p>{% i18n "The email will be automatically deleted once you confirm the registration." %}</p>
0038     {% endif %}
0039     <br/><br/>
0040     <a href="{{ block.keyUrl }}">{% i18n "Show key details" %}</a>
0041   </div>
0042 {% elif block.isResponse %}
0043   <div style="font-size: large; padding-bottom: 20pt;">
0044     {% i18n "This is an automatically generated email. The purpose of this email is to register your OpenPGP key with your email provider." %}
0045   </div>
0046   <div styl="padding-bottom: 20pt;">
0047     <p>{% i18n "Your OpenPGP key will be published on your email provider's key server. Other users will be able to retrieve the key and send you encrypted emails and verify authenticity of emails you send them." %}</p>
0048   </div>
0049 {% endif %}
0050 </div>
0051