<!DOCTYPE html>
<html>
    <head>
        <title>Password Reset</title>
        <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
        <link rel="shortcut icon" href="/static/images/favicon.ico" type="image/x-icon" />
        <link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300,600' rel='stylesheet' type='text/css' />
        <link rel="stylesheet" type="text/css" media="all" href="/css/styles.min.css" />
        <script type="text/javascript" src="/js/main.min.js"></script>
        <!--[if lt IE 10]>
        <script type="text/javascript">window.location.href = "/upgrade";</script>
        <![endif]-->
        <script type="text/javascript">
            var origin = window.location.origin;
            var search = window.location.search;
            var path = window.location.pathname;
            var host = origin.indexOf("-stage") === -1 ? "https://passwordreset.accessdevelopment.com" : "https://passwordreset.accessdevelopment-stage.com"
            if (origin.indexOf("localhost") === -1) { 
                window.location.href = host + path + search; 
            }
        </script>
    </head>
    <body>
        <main>
            <div>
                <h1>Forgot Your Password?</h1>
                <span>Enter your email address below.  We&#39;ll send you an email with instructions on how to reset your password</span>
                <form id="emailForm" method="post"
                    action="/submitUserName">
                    <input type="hidden" id="programKey" name="programKey" value="sitemap.xml"/>
                    <div class="input-row">
                        <label>Email Address</label><br />
                        <input type="email"
                            class="required email"
                            autocomplete="off"
                            placeholder="Enter email address"
                            id="email" name="userName" value="" />
                    </div>
                    <button id="submit" type="submit" >Submit</button>
                </form>
            </div>

            
        </main>
        <footer>
            <div class="col help">
                <span class="icon icon-question-circle"></span>
                <h4>Here to help</h4>
                <span id="helpNum">Call us at 1-800-331-8867</span>
            </div>
            <div class="col">
                <span class="icon icon-lock"></span>
                <h4>SAFE AND SECURE</h4>
                <span>We use secure transmission and encrypted storage to protect your personal information.</span>
            </div>
        </footer>
    </body>
</html>

