MAI/LabWork01/templates/findUrl.html

41 lines
1.5 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" type="text/css" href="{{ url_for( 'static', filename='index.css', v=1)}}">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<title>Document</title>
</head>
<body>
<div class="container">
<form action="/findURL" method="post">
<div class="mb-5 mt-3">
<label class="form-label">Поиск</label>
<div class="row">
2023-10-26 16:05:43 +04:00
<div class="col" style="width: 100%">
<input type="text" name="word" placeholder="Слово">
</div>
<div class="col">
2023-10-26 16:05:43 +04:00
<input type=submit value='Вывод диапазона'>
</div>
</div>
</div>
</form>
<div class="">
2023-10-26 16:05:43 +04:00
{% if find: %}
<form action='/showFindLinks' method=post>
<input type=submit value='Показать результаты'>
</form>
{% endif %}
{% if notFind: %}
<h1>Смысла нет</h1>
{% endif %}
</div>
</div>
</body>
</html>