Files
Arcaea-server/latest version/templates/web/changeuserpwd.html
Lost-MSth f25bd4130e Update a midway version (waiting for offical update)
Add some things and fix some bugs.
It will not have a description.
2020-12-29 11:29:36 +08:00

24 lines
719 B
HTML

{% extends 'base.html' %}
{% block header %}
<h1>{% block title %}Change user password{% endblock %}</h1>
{% endblock %}
{% block content %}
<form action="/web/changeuserpwd" method="post">
<div class="title">Edit the user's password</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 />
<label for="pwd">Password</label>
<input type="password" name="pwd" id="pwd" required>
<label for="pwd2">Enter again</label>
<input type="password" name="pwd2" id="pwd2" required>
<input type="submit" value="Edit">
</form>
{% endblock %}