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