mirror of
https://github.com/crmeb/CRMEB.git
synced 2026-02-13 11:04:02 +00:00
17 lines
309 B
PHP
17 lines
309 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title><?=$form->getTitle()?></title>
|
|
<?=implode("\r\n",$form->getScript())?>
|
|
<?=$form->getSuccessScript()?>
|
|
</head>
|
|
<body>
|
|
<script>
|
|
(function () {
|
|
var create = <?=$form->formScript()?>
|
|
create();
|
|
})();
|
|
</script>
|
|
</body>
|
|
</html>
|