edit_account.html 1.3 KB

1234567891011121314151617181920212223242526272829303132
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>Edit Accountts</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>Edit {{ name }}'s Account</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 }}"> </td>
  19. <td> <label for="email">Email:</label> </td>
  20. <td> <input type="text" name="newemail" value="{{ email }}" size="40"> </td>
  21. <input type="hidden" name="user_id" value="{{ user_id }}">
  22. <input type="hidden" name="name" value="{{ name }}">
  23. </tr>
  24. </table>
  25. <br><button class="button button2" type="submit">Save</button><br>
  26. </form>
  27. <a href="{{ url_for('web_panels.mgmt', auth=session['auth_code']) }}">Cancel</a>
  28. </body>
  29. </div>
  30. </html>