keyoxide-web/views/util/qrfp.php

12 lines
614 B
PHP
Raw Normal View History

2020-07-22 06:54:56 -06:00
<?php $this->layout('template.base', ['title' => $title]) ?>
<div class="content">
<h1>QR Code</h1>
2020-07-22 06:58:11 -06:00
<form id="form-util-qrfp" method="post">
2020-07-22 06:54:56 -06:00
<p>This tool generates a QR code containing the fingerprint of your public key (<a href="https://github.com/open-keychain/open-keychain/wiki/QR-Codes">format</a>). This QR code can be scanned by apps like <a href="https://www.openkeychain.org/">OpenKeyChain</a>.</p>
<h3>Fingerprint</h3>
<input type="text" name="input" id="input" placeholder="Fingerprint" value="<?=$this->escape($input)?>">
</form>
2020-07-22 06:58:11 -06:00
<div id="qrcode"></div>
2020-07-22 06:54:56 -06:00
</div>