Select Text read_text.html
run_bash.html
<!-- run_bash.html-->
{% extends 'base_.html' %}
{% block title %}Search Results - My Blog{% endblock %}
{% block content %}
<h4>Example: bash static/text_files/bash_test 'jack-Desktop'</h4>
<body>
<form action="{{ url_for('run_bash') }}" method="POST">
<label for="bash_command">Enter Bash Command:</label><br />
<textarea class="spacer" name="bash_command" id="bash_command"></textarea>
<br>
<button type="submit">Run Command</button>
</form>
<h2>Result:</h2>
<pre>{{ result }}</pre>
<h2>Random Video</h2>
<p>This will evenually be an instruction video on how to use this page</p><br />
<video controls>
<source src="{{ video }}" type="video/mp4">
Your browser does not support the video tag.
</video>
</body>
{% endblock %}
</html>
Back to file list