30 lines
1.0 KiB
HTML
30 lines
1.0 KiB
HTML
<!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>Tree</title>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<form action="/" method="get">
|
|
<div class="mb-5 mt-3">
|
|
<label class="form-label">Вывод дерева</label>
|
|
<div class="row">
|
|
<div class="col">
|
|
<input type=submit value='Главная'>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
<div class="">
|
|
<p>{{ DataTree }}</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |