mirror of
https://github.com/ACSPRI/queXS
synced 2024-04-02 12:12:16 +00:00
bootstrapify login screen
This commit is contained in:
@@ -792,12 +792,35 @@ if(isset($_SESSION['loginID']))
|
||||
else
|
||||
{ //not logged in
|
||||
|
||||
sendcacheheaders();
|
||||
if (!isset($_SESSION['metaHeader'])) {$_SESSION['metaHeader']='';}
|
||||
//$adminoutput = getAdminHeader($_SESSION['metaHeader']).$adminoutput.$loginsummary; // All future output is written into this and then outputted at the end of file
|
||||
$adminoutput =$loginsummary;
|
||||
sendcacheheaders();
|
||||
$adminoutput = <<<EOD
|
||||
<!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">
|
||||
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
|
||||
<title>queXS Authentication</title>
|
||||
|
||||
<!-- Bootstrap core CSS -->
|
||||
<link href="../../../include/bootstrap/css/bootstrap.min.css" rel="stylesheet">
|
||||
|
||||
<!-- Custom styles for this template -->
|
||||
<link href="../../../css/signin.css" rel="stylesheet">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="container">
|
||||
EOD;
|
||||
|
||||
$adminoutput .= $loginsummary;
|
||||
$adminoutput .= "</div></body></html>";
|
||||
unset($_SESSION['metaHeader']);
|
||||
$adminoutput.= "</div>\n";//.getAdminFooter("http://docs.limesurvey.org", $clang->gT("LimeSurvey online manual"));
|
||||
}
|
||||
if (($action=='showphpinfo') && ($_SESSION['USER_RIGHT_CONFIGURATOR'] == 1))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user