Skip to content
form.tpl.htm 650 B
Newer Older
tbrehm's avatar
tbrehm committed
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Form</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="../themes/{tmpl_var name="theme"}/style.css" rel="stylesheet" type="text/css">
<script language="JavaScript">
<!--

function del_record(link) {
Falko Timme's avatar
Falko Timme committed
  if(window.confirm("<tmpl_var name='delete_confirmation'>")) {
          location.href = link;
tbrehm's avatar
tbrehm committed
  }
}

//-->
</script>
</head>

<body>
<form method="post" action="<tmpl_var name='form_action'>" name="myform" enctype="multipart/form-data">
<tmpl_dyninclude name="content_tpl">
</form>
</body>
Falko Timme's avatar
Falko Timme committed
</html>