<!--
     write!(w, "<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.0 Transitional//EN\" \"http://www.w3.org/TR/REC-html40/loose.dtd\">")?;
-->
<html lang="en">
  <head>
    <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
    <title>The Pijul Nest</title>
  </head>
  <body style="font-family: sans-serif; padding: 0.2em 1em">
    <div style="{CONTENT_STYLE}">
      <h1>Password reset</h1>
      <div style="padding: 1em 0">
        <p>
          Someone (hopefully you) asked to reset your password on {self.host}.
          If this wasn't you, you can safely ignore this email. Else, click on
          the following link to access your account:
        </p>
        <p>
          <a
            style="{A_STYLE}"
            href="https://{self.host}/recover?code={self.token}"
            >Access your account</a
          >
        </p>
      </div>
    </div>
    <div style="{FOOTER_STYLE}">
      <p>
        &#8212;
        <br />
        You're receiving this email because you or someone else for your
        password on
        <a style="{A_STYLE}" href="https://{self.host}">{self.host}</a> to be
        reset. If you did not do this yourself, you can safely ignore this
        email.
        <script type="application/ld+json">
          {
            "@context": "http://schema.org",
            "@type": "EmailMessage",
            "action": {
              "potentialAction": {
                "@type": "ConfirmAction",
                "name": "Confirm password reset",
                "handler": {
                  "@type": "HttpActionHandler",
                  "url": "https://{self.host}/recover?code={self.token}"
                }
              },
              "description": "Confirm password reset on {self.host}."
            }
          }
        </script>
      </p>
    </div>
  </body>
</html>