23 lines
792 B
HTML
23 lines
792 B
HTML
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
<head>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='index.css') }}">
|
|
<meta charset="UTF-8">
|
|
<title>Попакошька</title>
|
|
</head>
|
|
<body>
|
|
|
|
{% include 'header.html' %}
|
|
|
|
<div class="navigation divv">
|
|
<div class="decore1"></div>
|
|
<nav class="navlink">
|
|
<a href="{{ url_for('index') }}" class="link">на главную</a>
|
|
<a href="{{ url_for('found') }}" class="link">forensic</a>
|
|
<a href="{{ url_for('sql') }}" class="link">sql пипка</a>
|
|
<!-- <a href="">rfi</a>-->
|
|
<!-- <a href="">lfi</a>-->
|
|
</nav>
|
|
</div>
|
|
<img class="helpimg" src="{{ url_for('static', filename='imgs/icon.png') }}">
|
|
</body> |