<div class="full-page">
    <div class="main-box" id="alw-login">
        <div id="tab-login" class="tab">
            <div class="login-row header grey-header">
                <span class="back-button">
                    <a href="/login/v2">
                        <img src="/images/back-arrow.svg">
                    </a>
                </span>
                <img class="header-icon" src="https://cdn.theorchard.io/images/OrchardLogo.png"/>
                <h2><?php echo $this->translate('Forgot your password?'); ?></h2>
            </div>
            <?php if ($this->err_message != '') { ?>
                <div class="error-message alert alert-danger">
                    <?php echo $this->translate($this->err_message); ?>  
                </div>
            <?php } ?>
            <?php if ($this->success_message != '') { ?>
                <div class="error-message alert alert-success">
                    <?php echo $this->translate($this->success_message); ?>  
                </div>
            <?php } ?>
            <div class="login-row white-body">
                <h5 class="login-message"><?=$this->translate('Enter your username or email address and we\'ll help you log into your account.')?></h5>
                <form action="/login/forgot" accept-charset="UTF-8" method="post" id="userlogin-forgot-form">
                    <div class="auth0-login-form form-item form-group" id="edit-login-wrapper">
                        <label for="edit-login"><?=$this->translate('Username or Email')?></label>
                        <input type="text" maxlength="128" name="login" id="edit-login" size="60" value="" autocorrect="off" autocapitalize="none" class="form-text form-control" />
                    </div>
            </div>
                    <div class="footer orange-footer">
                        <button type="submit" name="op" id="edit-submit" class="btn btn-block orange-btn">
                            <h5 class="btn-title"><?php echo $this->translate('Send reset email'); ?></h5>
                        </button>
                    </div>
                </form>
        </div>
    </div>
</div>
