<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="static/style.css" />
<title>Reset game password</title>
</head>
<body>
{{> header}}
<div class="content">
<h1>Reset game password</h1>
<form id="query-reset-game-form" action="query-reset-game-pwd.do" method="post">
<fieldset>
	<legend>Enter contact data to request password change:</legend>
	<div>
		<label for="login">Username:</label>
		<input name="login" id="login" type="text" placeholder="Username" required autofocus />
	</div>
	<div>
		<input type="radio" name="contact_type" value="email">E-mail<br>
		<input type="radio" name="contact_type" value="xmpp">XMPP<br>
	</div>
	<div>
		<label for="contact">Contact:</label>
		<input name="contact" id="contact" type="text" placeholder="Contact" required autofocus />
	</div>
    <div>
        <input type="radio" name="password_type" value="game" checked>Game<br>
        <input type="radio" name="password_type" value="web">Web<br>
    </div>
	<input name="csrf" type="hidden" value="{{ csrf }}">
	<input name="submit" type="submit" value="Reset password">
</fieldset>
</form>
</div>
{{> footer}}
</body>
</html>