mirror of
https://github.com/Lost-MSth/Arcaea-server.git
synced 2026-02-04 13:17:27 +08:00
44 lines
1.6 KiB
HTML
44 lines
1.6 KiB
HTML
{% extends 'base.html' %}
|
|
{% block header %}
|
|
<h1>{% block title %}Change the purchase's items{% endblock %}</h1>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<form action="/web/changepurchaseitem" method="post">
|
|
<div class="title">Add the purchase's item</div>
|
|
<label for="purchase_name">Purchase name</label>
|
|
<input name="purchase_name" id="purchase_name" required>
|
|
<label for="item_id">ID of the item</label>
|
|
<input name="item_id" id="item_id" required>
|
|
<label for="type">Type</label>
|
|
<div>
|
|
<select name="type">
|
|
<option value='single' selected>Single song</option>
|
|
<option value='pack'>Song pack</option>
|
|
<option value='world_song'>World song</option>
|
|
<option value='character'>Character</option>
|
|
</select>
|
|
</div>
|
|
<br />
|
|
<input type="submit" value="Add">
|
|
</form>
|
|
|
|
<form action="/web/changepurchaseitem/delete" method="post">
|
|
<div class="title">Delete the purchase's item</div>
|
|
<label for="purchase_name">Purchase name</label>
|
|
<input name="purchase_name" id="purchase_name" required>
|
|
<label for="item_id">ID of the item</label>
|
|
<input name="item_id" id="item_id" required>
|
|
<label for="type">Type</label>
|
|
<div>
|
|
<select name="type">
|
|
<option value='single' selected>Single</option>
|
|
<option value='pack'>Pack</option>
|
|
<option value='world_song'>World song</option>
|
|
<option value='character'>Character</option>
|
|
</select>
|
|
</div>
|
|
<br />
|
|
<input type="submit" value="Delete">
|
|
</form>
|
|
{% endblock %} |