Sha256: 57fc118ed897daafa888b465a8f63721d011cd73f054d358f8225bcd62a5e3a0

Contents?: true

Size: 1.1 KB

Versions: 25

Compression:

Stored size: 1.1 KB

Contents

---
title: Forgot password
published: true
listed: false
handle: forgot_password
---
{% extends 'index' %}

{% block content %}

<h1>Forgot your password</h1>

{% if current_account %}
  <div class="alert alert-warning">
    You're already authenticated!
  </div>
{% else %}
  {% if auth_reset_password_instructions_sent %}
    {{ auth_reset_password_instructions_sent | translate }}
  {% else %}
    <form action="{% path_to 'forgot_password' %}" method="POST">
      <input type="hidden" name="auth_action" value="forgot_password" />
      <input type="hidden" name="auth_content_type" value="accounts" />
      <input type="hidden" name="auth_id_field" value="email" />
      <input type="hidden" name="auth_callback" value="{% path_to sign_in %}" />

      {% if auth_wrong_email %}
        {{ auth_wrong_email | translate }}
      {% endif %}

      <label for="auth-email">Your E-mail</label>
      <input type="email" id="auth-email" placeholder="Email" name="auth_id" value="{{ params.auth_id }}">

      <button type="submit" class="btn btn-default">Submit</button>
    </form>
  {% endif %}
{% endif %}

{% endblock %}

Version data entries

25 entries across 25 versions & 1 rubygems

Version Path
locomotivecms_steam-1.8.0.alpha2 spec/fixtures/default/app/views/pages/account/forgot_password.liquid
locomotivecms_steam-1.8.0.alpha1 spec/fixtures/default/app/views/pages/account/forgot_password.liquid
locomotivecms_steam-1.7.1 spec/fixtures/default/app/views/pages/account/forgot_password.liquid
locomotivecms_steam-1.7.0 spec/fixtures/default/app/views/pages/account/forgot_password.liquid
locomotivecms_steam-1.6.1 spec/fixtures/default/app/views/pages/account/forgot_password.liquid
locomotivecms_steam-1.6.0 spec/fixtures/default/app/views/pages/account/forgot_password.liquid
locomotivecms_steam-1.6.0.rc1 spec/fixtures/default/app/views/pages/account/forgot_password.liquid
locomotivecms_steam-1.6.0.beta1 spec/fixtures/default/app/views/pages/account/forgot_password.liquid
locomotivecms_steam-1.5.3 spec/fixtures/default/app/views/pages/account/forgot_password.liquid
locomotivecms_steam-1.5.2 spec/fixtures/default/app/views/pages/account/forgot_password.liquid
locomotivecms_steam-1.5.1 spec/fixtures/default/app/views/pages/account/forgot_password.liquid
locomotivecms_steam-1.5.0 spec/fixtures/default/app/views/pages/account/forgot_password.liquid
locomotivecms_steam-1.5.0.rc1 spec/fixtures/default/app/views/pages/account/forgot_password.liquid
locomotivecms_steam-1.5.0.rc0 spec/fixtures/default/app/views/pages/account/forgot_password.liquid
locomotivecms_steam-1.5.0.beta3 spec/fixtures/default/app/views/pages/account/forgot_password.liquid
locomotivecms_steam-1.5.0.beta2 spec/fixtures/default/app/views/pages/account/forgot_password.liquid
locomotivecms_steam-1.5.0.beta1 spec/fixtures/default/app/views/pages/account/forgot_password.liquid
locomotivecms_steam-1.4.1 spec/fixtures/default/app/views/pages/account/forgot_password.liquid
locomotivecms_steam-1.4.0 spec/fixtures/default/app/views/pages/account/forgot_password.liquid
locomotivecms_steam-1.4.0.rc2 spec/fixtures/default/app/views/pages/account/forgot_password.liquid