| Server IP : 138.197.176.125 / Your IP : 216.73.217.172 Web Server : Apache/2.4.41 (Ubuntu) System : Linux SuiteCRM-8 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.3.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/AppointmentScheduler-Don/modules/Surveys/Entry/ |
Upload File : |
<?php
$surveyName = !empty($_REQUEST['name']) ? $_REQUEST['name'] : 'Survey';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title><?= $surveyName; ?></title>
<link href="themes/SuiteP/css/bootstrap.min.css" rel="stylesheet">
<link href="custom/include/javascript/rating/rating.min.css" rel="stylesheet">
<link href="custom/include/javascript/datetimepicker/jquery-ui-timepicker-addon.css" rel="stylesheet">
<link href="include/javascript/jquery/themes/base/jquery.ui.all.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="row well">
<div class="col-md-offset-2 col-md-8">
<h1><?= $surveyName; ?></h1>
<p>Thanks for completing this survey.</p>
</div>
</div>
</div>
<script src="include/javascript/jquery/jquery-min.js"></script>
<script src="include/javascript/jquery/jquery-ui-min.js"></script>
</body>
</html>