Update crypto.html
Browse files- crypto.html +3 -3
crypto.html
CHANGED
|
@@ -65,14 +65,14 @@
|
|
| 65 |
|
| 66 |
<form id="encryptForm">
|
| 67 |
<div class="input-row">
|
| 68 |
-
<label for="key"
|
| 69 |
<input type="text" id="key" name="key" required>
|
| 70 |
</div>
|
| 71 |
<div class="input-row">
|
| 72 |
-
<label for="link"
|
| 73 |
<input type="text" id="link" name="link" required>
|
| 74 |
</div>
|
| 75 |
-
<div id="encryptedLink" onclick="copyToClipboard(this)">Кликните после шифрования, чтобы скопировать
|
| 76 |
<button type="button" id="encryptButton" onclick="encryptLink()">Зашифровать</button>
|
| 77 |
</form>
|
| 78 |
|
|
|
|
| 65 |
|
| 66 |
<form id="encryptForm">
|
| 67 |
<div class="input-row">
|
| 68 |
+
<label for="key">Ключ шифрования(crypto_key_auth или crypto_key_url):</label>
|
| 69 |
<input type="text" id="key" name="key" required>
|
| 70 |
</div>
|
| 71 |
<div class="input-row">
|
| 72 |
+
<label for="link">api_key_auth или ссылка:</label>
|
| 73 |
<input type="text" id="link" name="link" required>
|
| 74 |
</div>
|
| 75 |
+
<div id="encryptedLink" onclick="copyToClipboard(this)">Кликните после шифрования, чтобы скопировать результат.</div>
|
| 76 |
<button type="button" id="encryptButton" onclick="encryptLink()">Зашифровать</button>
|
| 77 |
</form>
|
| 78 |
|