services.html 905 B

1234567891011121314151617181920212223242526272829
  1. <!doctype html>
  2. <title>Rollbot 2.0</title>
  3. <link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='rollbot.css') }}">
  4. <div class="page">
  5. <h1>Rollbot 2.0</h1>
  6. {% if r is not none %}
  7. {% if r %}
  8. {% if txt is not none%}
  9. {{ txt }}<br/>
  10. {% endif %}
  11. {% if img is not none%}
  12. <img src="{{ img }}"/><br/>
  13. {% endif %}
  14. {% else %}
  15. Operation produced no response!
  16. {% endif %}
  17. Try entering another command if you need help!
  18. {% else %}
  19. Hello! I'm Rollbot! You can enter a command below!<br/>
  20. You can also elide the initial "!" if you want!
  21. {% endif %}
  22. <br/>
  23. <br/>
  24. <br/>
  25. <form action="/services" method=POST>
  26. <input type=text autofocus name="cmd"/><br/><br/>
  27. <button type=submit>Submit</button>
  28. </form>
  29. </div>