mirror of
https://github.com/SuiteCRM/SuiteCRM-Core.git
synced 2026-07-27 23:29:19 +08:00
33 lines
992 B
PHP
33 lines
992 B
PHP
<?php
|
|
|
|
$surveyName = !empty($_REQUEST['name']) ? $_REQUEST['name'] : 'Survey';
|
|
|
|
$surveyThanks = translate('LBL_SURVEY_THANKS', 'Surveys');
|
|
?>
|
|
|
|
<!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/suite8/css/bootstrap.min.css" rel="stylesheet">
|
|
<link href="include/javascript/jquery/themes/base/jquery.ui.all.css" rel="stylesheet">
|
|
<link href="modules/Surveys/javascript/survey.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><?= $surveyThanks; ?></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>
|