Subversion-Projekte lars-tiefland.content-management

Revision

Blame | Letzte Änderung | Log anzeigen | RSS feed

<html>
    <head>
        <title>{$kunde}: Redaktionssystem</title>
        <meta http-equiv="Content-Type" content="text/html; charset={$charset}">
        <link rel="stylesheet" type="text/css" href="redaktion.css">
        <script language="JavaScript">
            function check_zahlungsart(obj)
            {
                var art=obj.value;
                if(art=="")
                {
                    alert("Bitte eine Zahlungsart auswaehlen!");
                    return false;
                }
            }
            function killkomma(w)
            {
                return w.replace(/,/,'.');
            }
            function check_form()
            {
                if (document.forms.length > 1)
                {
                    if ((document.forms[1].changed.value == 'true') && (!confirm('WARNUNG! Sie haben nicht gespeichert!\nSollen Ihre Änderungen verworfen werden ?')))
                    {
                        document.forms[0].reset();
                    }
                    else
                    {
                        document.forms[0].submit();
                    }
                }
                else
                {
                    document.forms[0].submit();
                }
            }
        </script>
        <meta name="description" content="Redaktionssystem">
        <meta name="author" content="Webagentur Niewerth">
        <meta name="robots" content="noindex">
    </head>
    <body>
        <div style="width:1000px;">
            {include file="header.tpl"}
            <form method="post" action="{$SCRIPT_NAME}" name="formname" enctype="multipart/form-data"{if isset($web_rechte.online_shop.porto.zahlungsarten)}onsubmit="return check_zahlungsart(getElementById('zahlungsart'))"{/if}>
            {include file=$file}
            <br>
            {include file="footer.tpl"}
            </form>
        </div>
    </body>
</html>