16 lines
346 B
HTML
16 lines
346 B
HTML
|
<div id="body">
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
<input type="text" id="inputText" name="inputText" placeholder="Введите значение" />
|
||
|
<button hx-get="/web/start_check_ports" hx-include="#inputText" hx-target='#body'>Проверить</button>
|
||
|
|
||
|
|
||
|
<div id="result">
|
||
|
{% for result in results %}
|
||
|
<p>{{ result }}</p>
|
||
|
{% endfor %}
|
||
|
</div>
|
||
|
</div>
|