<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8">
    <title>Sign-in</title>
    <style type="text/css">
     <%- include('main.css', {}); %>
    </style>
  </head>
  <body>
    <header role="navigation" class="header header__desktop fixed">
      <section class="header-wrap">
        <div class="logo-block">
          <img src="https://design.inrupt.com/atomic-core/img/solid.svg" />
        </div>
      </section>
    </header>
    <div class="main-content">
      <section class="main-content-section">
        <div class="wrapper">
          <h1 class="title--white">Email Sent</h1>
          <div class="login-panel">
            <div class="panel-body">
              <form autocomplete="off" action="<%= details.pathPrefix %>/interaction/<%= details.uid %>/forgotpassword" method="post">

                <div class="input-wrap">
                  <p>An email has been sent to your account with a link to reset your password.</p>
                </div>

                <div class="input-wrap">
                  <p>If you do not receive your email in a couple of minutes, check your spam folder or click the link below to send another email.</p>
                </div>

                <input type="hidden" name="username" value="<%= username %>" />

                <a href="<%= details.pathPrefix %>/interaction/<%= details.uid %>/login" class="ids-link-filled">Back to Log In</a>

                <hr />
                <div class="space-between">
                  <button type="submit" name="submit" class="link">Send Another Email</button>
                </div>

              </form>
            </div>
          </div>
        </div>
      </section>
    </div>
  </body>
</html>
