1234567891011121314151617181920212223242526272829 |
- <!doctype html>
- <title>Rollbot 2.0</title>
- <link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='rollbot.css') }}">
- <div class="page">
- <h1>Rollbot 2.0</h1>
- {% if r is not none %}
- {% if r %}
- {% if txt is not none%}
- {{ txt }}<br/>
- {% endif %}
- {% if img is not none%}
- <img src="{{ img }}"/><br/>
- {% endif %}
- {% else %}
- Operation produced no response!
- {% endif %}
- Try entering another command if you need help!
- {% else %}
- Hello! I'm Rollbot! You can enter a command below!<br/>
- You can also elide the initial "!" if you want!
- {% endif %}
- <br/>
- <br/>
- <br/>
- <form action="/services" method=POST>
- <input type=text autofocus name="cmd"/><br/><br/>
- <button type=submit>Submit</button>
- </form>
- </div>
|