75 lines
1.7 KiB
HTML
75 lines
1.7 KiB
HTML
<section id="creation">
|
|
<form id="user_creation" action="private/user_create.php" method="post">
|
|
|
|
<section id="authentication">
|
|
<p><label>Your Username</label>
|
|
<input name="auth_user" type="text" />
|
|
</p>
|
|
<p><label>Your Password</label>
|
|
<input name="auth_pass" type="text">
|
|
</p>
|
|
|
|
<hr />
|
|
|
|
<section id="user_details">
|
|
<p><label>User ID</label><input name="id" type="number" /></p>
|
|
<p><label>Full Name</label><input name="full_name" type="text"/>
|
|
</p>
|
|
<p><label>Biography</label><input name="bio" type="text" />
|
|
</p>
|
|
<p><label>E-mail</label><input name="email" type="email" /></p>
|
|
<p><label>Website</label><input name="url" type="url" /></p>
|
|
|
|
<hr />
|
|
|
|
<p><label>Username</label><input name="name" type="text" /></p>
|
|
<p><label>Password</label>
|
|
<input name="password" type="password" />
|
|
</p>
|
|
|
|
<hr />
|
|
|
|
|
|
<p><label>Login Group</label>
|
|
<select name="login">
|
|
<option value="contributor">Contributor</option>
|
|
<option value="spectator">Spectator</option>
|
|
<option value="wizard">Wizard</option>
|
|
<option value="archmage">Archmage</option>
|
|
</select>
|
|
</p>
|
|
</section>
|
|
<p><input type="submit" /></p>
|
|
</form>
|
|
</section>
|
|
|
|
<hr />
|
|
|
|
<section id="destruction">
|
|
<form id="user_destruction" action="private/user_destroy.php"
|
|
method="post">
|
|
|
|
<section id="authentication">
|
|
<p><label>Your Username</label>
|
|
<input name="auth_user" type="text" />
|
|
</p>
|
|
<p><label>Your Password</label>
|
|
<input name="auth_pass" type="text">
|
|
</p>
|
|
</section>
|
|
|
|
<hr />
|
|
|
|
<p><label>Target</label>
|
|
<select name="id">
|
|
{% for id in users %}
|
|
<option value="{{ id }}">
|
|
{{ user[id]['full_name'] }}
|
|
</option>
|
|
{% endfor %}
|
|
</select>
|
|
</p>
|
|
<p><input type="submit" /></p>
|
|
</form>
|
|
</section>
|