adjust.html 1.1 KB

1234567891011121314151617181920212223242526272829
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>Adjust Points</title>
  5. <link rel="icon" type="image/x-icon" href="/static/img/favicon.ico">
  6. <link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
  7. </head>
  8. <div class="panel">
  9. <div class="navbar">
  10. <p>Adjust {{ name }}'s Points</p>
  11. <img src="/static/img/ownchatbotwide.png">
  12. </div>
  13. <body>
  14. <form method="POST">
  15. <table>
  16. <tr style="border-bottom: none;">
  17. <td> <label for="points">Points:</label> </td>
  18. <td> <input type="number" name="newpoints" value="{{ points }}" required> </td>
  19. <input type="hidden" name="user_id" value="{{ user_id }}">
  20. <input type="hidden" name="name" value="{{ name }}">
  21. </tr>
  22. </table>
  23. <br><button class="button button2" type="submit">Save Points</button><br>
  24. </form>
  25. <a href="{{ url_for('web_panels.mgmt', auth=session['auth_code']) }}">Cancel</a>
  26. </body>
  27. </div>
  28. </html>