Subversion-Projekte lars-tiefland.laravel_shop

Revision

Revision 975 | Revision 981 | Zur aktuellen Revision | Blame | Vergleich mit vorheriger | Letzte Änderung | Log anzeigen | RSS feed

{extends file="page.tpl"}
{block name="content"}
<form action="/backend/login/execute/" class="login-form" method="post" accept-charset="utf-8">
    <input type="hidden" name="{$csrf_name}" value="{$csrf_value}" />
    <input type="hidden" name="back" value="{$smarty.server.HTTP_REFERER}" />
    <h3 class="form-title font-green">Anmelden</h3>
    <div class="form-group">
        <!--ie8, ie9 does not support html5 placeholder, so we just show field title for that-->
        <label class="control-label visible-ie8 visible-ie9">Benutzername</label>
        <input class="form-control form-control-solid placeholder-no-fix" type="text" autocomplete="off" placeholder="E-Mail" name="user" />
    </div>
    <div class="form-group">
        <label class="control-label visible-ie8 visible-ie9">Passwort</label>
        <input class="form-control form-control-solid placeholder-no-fix" type="password" autocomplete="off" placeholder="Passwort" name="password" />
    </div>
    <div class="form-actions">
        <button type="submit" class="btn green uppercase">anmelden</button>
    </div>
</form>
{/block}