File "password.tmpl"

Full Path: /srv/www/www.cadoro.it/src/templates/password.tmpl
File size: 1.87 KB
MIME-type: text/html
Charset: utf-8

{extends "layout-base.tmpl"}

{block name=title}Password dimenticata — CADORO{/block}

{block name="head"}
<meta name="description" content="Password dimenticata &mdash; CADORO">
<meta name="author" content="">
{/block}

{block name="content"}
<div class="container content-section">
  {if $confirm}
  <h1 class="text-center">
    <strong>{_("PASSWORD DIMENTICATA")}</strong>
  </h1>
  <hr>
  <div class="row mb20">
    <div class="col-sm-8 col-sm-offset-2">
      <h4 class="text-center">
        {_("TI ABBIAMO MANDATO UN’EMAIL DI VERIFICA.<br>CLICCA SUL LINK CHE TROVI PER MODIFICARE LA TUA PASSWORD.")}
      </h4>
    </div>
  </div>
  {else}
  <h1 class="text-center">
    <strong>{_("PASSWORD DIMENTICATA")}</strong>
  </h1>
  <div class="row">
    <div class="col-sm-6 col-sm-offset-3">
      <form method="post" action="{$base_url}/password">
        {if isset($errors.email) and $errors.email eq 1}
        <div class="alert alert-danger">
          {_("<strong>ATTENZIONE</strong>: l'indirizzo email inserito non risulta registrato.")}
        </div>
        {/if}
        <div class="row">
          <div class="col-sm-12 mt10{if isset($errors.email)} has-error{/if}">
            <label class="form-control-static" for="email">{_("Email")}</label>
            <input type="text" name="email" class="form-control" value="{_f('email')}">
            <p class="help-block">
              {_("Inserisci l'indirizzo email utilizzato in fase di iscrizione e ti invieremo un link sicuro per reimpostare la tua password.")}
            </p>
          </div>
        </div>
        <p class="mt60 text-center">
          <button type="submit" class="btn btn-danger btn-lg">{_("INVIA")}</button>
        </p>
        <p class="mt20 text-center">
          <a href="{$base_url}/login">{_("Annulla e torna alla pagina di login")}</a>
        </p>
      </form>
    </div>
  </div>
  {/if}
</div>
{/block}