ventilaar
/
twitter_zuil
Archived
1
Fork 0
This repository has been archived on 2021-06-10. You can view files and clone it, but cannot push or open issues or pull requests.
twitter_zuil/templates/moderation_addmoderator.html

23 lines
638 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Add Moderator</title>
</head>
<body>
{% include 'flash_template.html' %}
<h1>Enter new moderator details</h1>
<form method="POST">
<label>
<input type="text" placeholder="Username" name="uname" required>
</label>
<label>
<input type="password" placeholder="Password" name="pword" required>
</label>
<label>
<input type="password" placeholder="Password again" name="pword2" required>
</label>
<button type="submit">Login</button>
</form>
</body>
</html>