Archived
1
0
Disbranĉigi 0
Ĉi tiu deponejo arĥiviĝis je 2024-01-28. Vi povas vidi kaj elŝuti dosierojn, sed ne povas puŝi nek raporti problemojn nek tirpeti.
blagoblag/res/themes/default/html/admin_index.twig.html
2019-02-23 01:15:14 -06:00

81 lines
1.8 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="password">
</p>
<hr />
<section id="user_details">
<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>
<section>
<form action="private/post_delete.php" method="post">
<label>Post ID</label> <input type="number" name="id" />
<input type="submit" />
</form>
</section>