1234567891011121314151617181920212223242526272829 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <title>Adjust Points</title>
- <link rel="icon" type="image/x-icon" href="/static/img/favicon.ico">
- <link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
- </head>
- <div class="panel">
- <div class="navbar">
- <p>Adjust {{ name }}'s Points</p>
- <img src="/static/img/ownchatbotwide.png">
- </div>
- <body>
- <form method="POST">
- <table>
- <tr style="border-bottom: none;">
- <td> <label for="points">Points:</label> </td>
- <td> <input type="number" name="newpoints" value="{{ points }}" required> </td>
- <input type="hidden" name="user_id" value="{{ user_id }}">
- <input type="hidden" name="name" value="{{ name }}">
- </tr>
- </table>
- <br><button class="button button2" type="submit">Save Points</button><br>
- </form>
- <a href="{{ url_for('web_panels.mgmt', auth=session['auth_code']) }}">Cancel</a>
- </body>
- </div>
- </html>
|