Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {% extends 'users/profile/accounts/accounts_base.html' %}
- {% block content %}
- <h1>Добавление счета</h1>
- <form method="post">
- {% csrf_token %}
- <input type="hidden"
- name="csrfmiddlewaretoken"
- value="KPagzW2wMb1X3JygrD81ZYVHVZXSctH7FHA7tWGNFTv49HNtKm4IPvnokMsPv1TX">
- <p>
- <label for="id_name">Name:</label>
- <input type="text"
- name="name"
- maxlength="50"
- required=""
- id="id_name">
- </p>
- <p>
- <label for="id_balance">Balance:</label>
- <input type="number"
- name="balance"
- step="10"
- required=""
- id="id_balance">
- </p>
- <p>
- <label for="id_color">Color:</label>
- <input type="color"
- name="color"
- value="#000000"
- maxlength="7"
- required=""
- id="id_color">
- </p>
- <button>Добавить</button>
- </form>
- {% endblock %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement