WW3KRXX63EYWW4563QM3VSEN4PGCPR76KJQBYIKCKOCNMDG6JW4QC DESUWE7PDNT34AEK5PDNELQJ2UV5UPCJNZWU3UE2V5WEXZQAI7MAC EVP2FSBHQUCAXQ6IIMBD6IS24ODKHP6HFWYCHIMYG6KOFRQG3RVQC 65A3LIWUS7UNMIHACC7ED6SSSSGQMKW4SAHQLXMT2YT6PFJ7KVUQC OJO4B4QO2JQLMZTGTJJIXEUNDIN45RFLEJBUZBYA7IS34XDPUAVAC 4MZ4VIR7FU3PQ3WKJI6TJIKYOIIBODFEPKLMQ32S4AKPZSDFO6AQC 7R6HAATP4CKWKNOFWAVCZFJVF6LADPHHIINR37PYNGAWGCTBJSJQC <!DOCTYPE html><html><head><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><div class="navi"></div><div class="content"><h1>Reset game password</h1><p><em>Thank you for playing FreeOrion with us.</em><br/><em>Donates are welcome <u>BTC: bc1q04qnmql47zkha6p4edl86hm0wgk90dmsfnl3vl</u></em></p></div></body></html>
use actix_web::http::header;use actix_web::{web, HttpResponse};use handlebars::Handlebars;pub async fn get_reset_game_pwd(hb: web::Data<Handlebars<'_>>) -> HttpResponse {let body = hb.render("reset-game-pwd", &()).expect("render reset-game-pwd");HttpResponse::Ok().body(body)}pub async fn post_reset_game_pwd() -> HttpResponse {HttpResponse::Found().append_header((header::LOCATION, "index.html")).finish()}
pub mod reset_game_pwd;