Files
Arcaea-server/latest version/templates/web/changeuserpurchase.html
Lost-MSth dfcbb6f9c0 Update to v1.7
close #1
close #2
2020-11-27 21:35:35 +08:00

44 lines
1.3 KiB
HTML

{% extends 'base.html' %}
{% block header %}
<h1>{% block title %}Change user purchase information{% endblock %}</h1>
{% endblock %}
{% block content %}
<form action="/web/changeuserpurchase/edituser" method="post">
<div class="title">Edit the user</div>
<label for="name">Arcaea Username</label>
<input name="name" id="name">
or<br />
<label for="user_code">Arcaea User Code</label>
<input name="user_code" id="user_code">
<br />
<br />
<div>对所有单曲和曲包的操作 Operation to all singles and packs:
<br />
<br />
<label><input type="radio" name="method" value="0">解锁 Unlock</label>
<br />
<label><input type="radio" name="method" value="1">封绝 Lock</label>
</div>
<br />
<input type="submit" value="Execute">
</form>
<br />
<hr />
<form action="/web/changeuserpurchase/" method="post">
<div class="title">Edit all the users</div>
<br />
<div>对所有单曲和曲包的操作 Operation to all singles and packs:
<br />
<br />
<label><input type="radio" name="method" value="0">解锁 Unlock</label>
<br />
<label><input type="radio" name="method" value="1">封绝 Lock</label>
</div>
<br />
<input type="submit" value="Execute">
</form>
{% endblock %}