ctf-resources/htb/hacktheboo2024/coding/[Very Easy] reversal/challenge/index.html

24 lines
281 B
HTML
Raw Permalink Normal View History

2024-10-23 11:10:43 +02:00
{% extends "base.html" %}
{% block title %}
Reverse
{% endblock %}
{% block content %}
<p>
Take in a string. Print the reverse.
</p>
{% endblock %}
{% block example_input %}
<p>
Test me
</p>
{% endblock %}
{% block example_output %}
<p>
em tseT
</p>
{% endblock %}