vse ploho
This commit is contained in:
parent
dfe2092ab7
commit
f671828664
1
app.py
1
app.py
@ -18,4 +18,5 @@ def found():
|
|||||||
def decode():
|
def decode():
|
||||||
return render_template('decode.html')
|
return render_template('decode.html')
|
||||||
|
|
||||||
|
|
||||||
app.run()
|
app.run()
|
@ -75,6 +75,7 @@
|
|||||||
height: 65%;
|
height: 65%;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
border-color: #000000;
|
border-color: #000000;
|
||||||
|
border: 1rem;
|
||||||
border-radius: 0.7rem;
|
border-radius: 0.7rem;
|
||||||
margin-right: 0rem;
|
margin-right: 0rem;
|
||||||
left: calc(100% - 5rem);
|
left: calc(100% - 5rem);
|
||||||
@ -92,7 +93,7 @@
|
|||||||
|
|
||||||
.decore1 {
|
.decore1 {
|
||||||
background-image: linear-gradient(to right, rgba(225, 225, 225, 0.8), rgba(225, 225, 225, 0.6));
|
background-image: linear-gradient(to right, rgba(225, 225, 225, 0.8), rgba(225, 225, 225, 0.6));
|
||||||
width: 5.5%;
|
width: 4.5%;
|
||||||
height: 85%;
|
height: 85%;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
border-radius: 1rem;
|
border-radius: 1rem;
|
||||||
@ -163,11 +164,12 @@
|
|||||||
|
|
||||||
.helpimg {
|
.helpimg {
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
width: 3.5vw;
|
width: 3vw;
|
||||||
height: auto;
|
height: auto;
|
||||||
margin: 2rem;
|
margin: 2rem;
|
||||||
bottom: 10vw;
|
bottom: 1.5%;
|
||||||
position: relative;
|
left: 1.2%;
|
||||||
|
position: absolute;
|
||||||
box-shadow: 0.4em 0.4em 0em 0px rgba(0, 0, 0, 0.8);
|
box-shadow: 0.4em 0.4em 0em 0px rgba(0, 0, 0, 0.8);
|
||||||
transition: 0.5s;
|
transition: 0.5s;
|
||||||
border-radius: 1em;
|
border-radius: 1em;
|
||||||
|
@ -6,18 +6,18 @@
|
|||||||
<title>Попакошька</title>
|
<title>Попакошька</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="info divv">
|
|
||||||
<a href="{{ url_for('index') }}"><h1 class="header">CTF для самых маленьких</h1></a>
|
{% include 'header.html' %}
|
||||||
<h3 class="context">Для тех кто хотел бы разобраться, но не знает, с чего начать</h3>
|
|
||||||
</div>
|
|
||||||
<div class="navigation divv">
|
<div class="navigation divv">
|
||||||
<div class="decore1"></div>
|
<div class="decore1"></div>
|
||||||
<nav class="navlink">
|
<nav class="navlink">
|
||||||
<a href="{{ url_for('index') }}" class="link">на главную</a>
|
<a href="{{ url_for('index') }}" class="link">на главную</a>
|
||||||
<a href="{{ url_for('sql') }}" class="link">sql пипка</a>
|
|
||||||
<a href="{{ url_for('found') }}" class="link">forensic</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="">rfi</a>-->
|
||||||
<!-- <a href="">lfi</a>-->
|
<!-- <a href="">lfi</a>-->
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
|
<img class="helpimg" src="{{ url_for('static', filename='imgs/icon.png') }}">
|
||||||
</body>
|
</body>
|
@ -6,19 +6,18 @@
|
|||||||
<title>Попакошька</title>
|
<title>Попакошька</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="info divv">
|
|
||||||
<a href="{{ url_for('index') }}"><h1 class="header">CTF для самых маленьких</h1></a>
|
|
||||||
<h3 class="context">Для тех кто хотел бы разобраться, но не знает, с чего начать</h3>
|
|
||||||
|
|
||||||
</div>
|
{% include 'header.html' %}
|
||||||
|
|
||||||
<div class="navigation divv">
|
<div class="navigation divv">
|
||||||
<div class="decore1"></div>
|
<div class="decore1"></div>
|
||||||
<nav class="navlink">
|
<nav class="navlink">
|
||||||
<a href="{{ url_for('index') }}" class="link">на главную</a>
|
<a href="{{ url_for('index') }}" class="link">на главную</a>
|
||||||
<a href="{{ url_for('sql') }}" class="link">sql пипка</a>
|
<a href="{{ url_for('sql пипка') }}" class="link">forensic</a>
|
||||||
<a href="{{ url_for('decode') }}" class="link">encode and decode</a>
|
<a href="{{ url_for('decode') }}" class="link">encode and decode</a>
|
||||||
<!-- <a href="">rfi</a>-->
|
<!-- <a href="">rfi</a>-->
|
||||||
<!-- <a href="">lfi</a>-->
|
<!-- <a href="">lfi</a>-->
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
|
<img class="helpimg" src="{{ url_for('static', filename='imgs/icon.png') }}">
|
||||||
</body>
|
</body>
|
5
templates/header.html
Normal file
5
templates/header.html
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
<div class="info divv">
|
||||||
|
<a href="{{ url_for('index') }}"><h1 class="header">CTF для самых маленьких</h1></a>
|
||||||
|
<h3 class="context">Для тех кто хотел бы разобраться, но не знает, с чего начать</h3>
|
||||||
|
|
||||||
|
</div>
|
@ -7,11 +7,7 @@
|
|||||||
</head>
|
</head>
|
||||||
<body >
|
<body >
|
||||||
|
|
||||||
<div class="info divv">
|
{% include 'header.html' %}
|
||||||
<a href="{{ url_for('index') }}"><h1 class="header">CTF для самых маленьких</h1></a>
|
|
||||||
<h3 class="context">Для тех кто хотел бы разобраться, но не знает, с чего начать</h3>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="info1 divv" >
|
<div class="info1 divv" >
|
||||||
|
@ -6,19 +6,18 @@
|
|||||||
<title>Попакошька</title>
|
<title>Попакошька</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="info divv">
|
|
||||||
<a href="{{ url_for('index') }}"><h1 class="header">CTF для самых маленьких</h1></a>
|
{% include 'header.html' %}
|
||||||
<h3 class="context">Для тех кто хотел бы разобраться, но не знает, с чего начать</h3>
|
|
||||||
</div>
|
|
||||||
<div class="navigation divv">
|
<div class="navigation divv">
|
||||||
<div class="decore1"></div>
|
<div class="decore1"></div>
|
||||||
<nav class="navlink">
|
<nav class="navlink">
|
||||||
<a href="{{ url_for('index') }}" class="link">на главную</a>
|
<a href="{{ url_for('index') }}" class="link">на главную</a>
|
||||||
<a href="{{ url_for('found') }}" class="link">forensic</a>
|
<a href="{{ url_for('found') }}" class="link">forensic</a>
|
||||||
<a href="{{ url_for('decode') }}" class="link">encode and decode</a>
|
<a href="{{ url_for('decode') }}" class="link">encode and decode</a>
|
||||||
<!-- <a href="">rfi</a>-->
|
<!-- <a href="">rfi</a>-->
|
||||||
<!-- <a href="">lfi</a>-->
|
<!-- <a href="">lfi</a>-->
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
<img class="helpimg" src="{{ url_for('static', filename='imgs/icon.png') }}">
|
<img class="helpimg" src="{{ url_for('static', filename='imgs/icon.png') }}">
|
||||||
</body>
|
</body>
|
Loading…
x
Reference in New Issue
Block a user