26 lines
597 B
HTML
26 lines
597 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block title %} Update Balance {% endblock %}
|
|
|
|
|
|
{% block content %}
|
|
<div class="centered" style="text-align: center;">
|
|
|
|
|
|
|
|
<p>Здравей, {{ user.username }} !</p><br>
|
|
|
|
<form method="post" enctype="multipart/form-data">
|
|
{% csrf_token %}
|
|
<input name="user_instance" id="user_instance" placeholder="1(userID)"><br><br>
|
|
|
|
<input name="tokens" id="tokens" placeholder="123 (reCoins)"><br><br>
|
|
<input name="item" id="item" placeholder="e.g. Вафла"><br><br>
|
|
|
|
<button type="submit" class="Buttons">Upload</button>
|
|
</form>
|
|
|
|
|
|
|
|
{% endblock %}
|