<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="alternate" type="application/rss+xml" href="static/rss.xml" title="Multiplayer FreeOrion server news" />
<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>
{{#if last_error}}
<p class="error">{{ last_error }}</p>
{{/if}}
<form id="reset-game-form" action="reset-game-pwd.do" method="post">
<fieldset>
<legend>Enter data to set new 
{{#if is_game_pwd }}
game
{{else}}
web
{{/if}}
        password:</legend>
<div>
<label for="login">Username:</label>
<input name="login" id="login" type="text" placeholder="Username" required autofocus />
</div>
<div>
<label for="password">Password:</label>
<input name="password" id="password" type="password" placeholder="Password" required autofocus />
</div>
<div>
<label for="password_copy">Password:</label>
<input name="password_copy" id="password_copy" type="password" placeholder="Copy password" required autofocus />
</div>
<input name="token" type="hidden" value="{{ token }}">
<input name="csrf" type="hidden" value="{{ csrf }}">
<input name="submit" type="submit" value="Reset password">
</fieldset>
</form>
</div>
{{> footer}}
</body>
</html>