i am trying to create a php that accesses a kibana deashboard however my kibana needs a user password. what happens is that i would like to access it password need to put username and password. but before that i already see a problem, when i use iframe it takes me to the login page however when placing the credentials it processes but it returns to the same login page.
<?php
require_once dirname(__FILE__).'/include/config.inc.php';
require_once dirname(__FILE__).'/include/hosts.inc.php';
$page['title'] = _('Availability report');
$page['file'] = 'kibana.php';
$page['scripts'] = ['class.calendar.js', 'gtlc.js'];
$page['type'] = detect_page_type(PAGE_TYPE_HTML);
require_once dirname(__FILE__).'/include/page_header.php';
?>
<html>
<head>
</head>
<body>
<iframe width="100%" height="1200px" src="http://1.1.1.21:5601/goto/b1671f828fcf4f87d02c78753ac6312b"</iframe>
</body>
</html>
