This commit is contained in:
Tim Bendt
2025-11-25 00:16:35 -05:00
commit 6b9ef7ca55
6757 changed files with 1003748 additions and 0 deletions

27
installer/views/template.php Executable file
View File

@@ -0,0 +1,27 @@
<!DOCTYPE html>
<html>
<head>
<title>Pancake Payments Install Wizard</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<link rel="stylesheet" href="<?php echo Asset::get_src('style.css', 'css'); ?>" media="screen">
<link rel='stylesheet' href='//fonts.googleapis.com/css?family=Paytone+One&v1' media="screen">
</head>
<body>
<div id="wrapper">
<div id="content" class="no_object_notification">
<?php echo $content; ?>
</div>
<!-- /content -->
<div id="footer">
</div>
<!-- /footer -->
</div>
<!-- /wrapper -->
<script src="<?php echo Asset::get_src('jquery-1.11.2.min.js', 'js'); ?>"></script>
<script src="<?php echo Asset::get_src('main.js', 'js'); ?>"></script>
</body>
</html>