{% extends "base.html" %} {% block title %}{% trans %}Forgot Password{% endtrans %} – OnlineConvert{% endblock %} {% block content %}

{% trans %}Forgot Password{% endtrans %}

{% trans %}Enter your email and we'll send you a password reset link.{% endtrans %}

{% if submitted %}
{% if not user_found %}

{% trans %}Check Your Inbox{% endtrans %}

{% trans email_addr=email %}If an account with {{ email_addr }} exists, a password reset link has been sent. Please check your inbox and spam folder.{% endtrans %}

{% elif email_sent %}

{% trans %}Email Sent!{% endtrans %}

{% trans email_addr=email %}We've sent a password reset link to {{ email_addr }}. The link will expire in 2 hours.{% endtrans %}

{% trans %}Didn't receive it? Check your spam folder or{% endtrans %} {% trans %}try again{% endtrans %}.

{% elif smtp_error %}

{% trans %}Email Could Not Be Sent{% endtrans %}

{% trans %}Your reset link was generated but the email could not be delivered. Please contact the site administrator.{% endtrans %}

{{ smtp_error }}

{% trans %}Admin:{% endtrans %} {% trans %}Configure SMTP settings in the admin panel under General Settings.{% endtrans %}

{% else %}

{% trans %}Check Your Inbox{% endtrans %}

{% trans email_addr=email %}If an account with {{ email_addr }} exists, a password reset link has been sent. Check your inbox and spam folder.{% endtrans %}

{% endif %} {% trans %}Back to login{% endtrans %}
{% else %}
{% trans %}Remembered your password?{% endtrans %} {% trans %}Sign in{% endtrans %}

{% trans %}How it works{% endtrans %}

  1. {% trans %}Enter your registered email address above{% endtrans %}
  2. {% trans %}We send you a secure reset link (valid for 2 hours){% endtrans %}
  3. {% trans %}Click the link to choose your new password{% endtrans %}
{% endif %}
{% endblock %}