CTF-site-project/templates/sql-injection.html
2025-01-23 00:19:58 +03:00

22 lines
927 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="ru">
<head>
<link rel="stylesheet" href="{{ url_for('static', filename='index.css') }}">
<meta charset="UTF-8">
<title>Попакошька</title>
</head>
<body>
<div class="info divv">
<a href="{{ url_for('index') }}"><h1 class="header">CTF для самых маленьких</h1></a>
<h3 class="context">Для тех кто хотел бы разобраться, но не знает, с чего начать</h3>
</div>
<div class="navigation divv">
<nav class="navlink">
<a href="{{ url_for('sql') }}" class="link">sql пипка</a>
<a href="{{ url_for('found') }}" class="link">forensic</a>
<a href="{{ url_for('decode') }}" class="link">encode and decode</a>
<!-- <a href="">rfi</a>-->
<!-- <a href="">lfi</a>-->
</nav>
</div>
</body>