20 lines
669 B
HTML
Raw Normal View History

2025-01-23 00:19:58 +03:00
<!DOCTYPE html>
<html lang="ru">
2025-01-24 23:58:28 +03:00
{% include 'head.html' %}
2025-01-23 00:19:58 +03:00
<body>
2025-01-24 21:21:41 +03:00
{% include 'header.html' %}
2025-01-23 23:12:54 +03:00
<div class="navigation divv">
<div class="decore1"></div>
2025-01-24 22:59:08 +03:00
<nav class="navlink">
2025-01-23 23:12:54 +03:00
<a href="{{ url_for('index') }}" class="link">на главную</a>
2025-01-24 22:59:08 +03:00
<a href="{{ url_for('sql') }}" class="link">sql пипка</a>
2025-01-23 23:12:54 +03:00
<a href="{{ url_for('decode') }}" class="link">encode and decode</a>
<!-- <a href="">rfi</a>-->
<!-- <a href="">lfi</a>-->
2025-01-24 22:59:08 +03:00
</nav>
2025-01-23 23:12:54 +03:00
</div>
2025-01-24 21:21:41 +03:00
<img class="helpimg" src="{{ url_for('static', filename='imgs/icon.png') }}">
2025-01-24 23:58:28 +03:00
</body>
</html>