Add key in the text area

This commit is contained in:
PCoder 2019-06-24 18:26:45 +02:00
parent ecc26d14e5
commit 04f1112b09

View file

@ -156,7 +156,9 @@
<div class="previous-keys-title">Previous keys</div> <div class="previous-keys-title">Previous keys</div>
{% endif %} {% endif %}
{% for key in keys %} {% for key in keys %}
<textarea cols="79" readonly oninput='this.style.height = "";this.style.height = this.scrollHeight + "px"'></textarea> <textarea class="form-control input-no-border" style="width: 100%" readonly oninput='this.style.height = "";this.style.height = this.scrollHeight + "px"'>
{{key}}
</textarea>
<br/> <br/>
{% endfor %} {% endfor %}
</> </>