moved authenticated/unauthenticated from index files in subdirs to named files in public

This commit is contained in:
Beth Parker 2017-10-30 22:42:03 -05:00
parent 2e8a80b2b9
commit dc319aa101
3 changed files with 15 additions and 15 deletions

12
public/authenticated.php Normal file
View file

@ -0,0 +1,12 @@
<html>
<head>
<title>Actcur Available Sites</title>
</head>
<body>
<?php
include "../includes/retrieve_data.php";
$data = retrieve_data("../../sitedata.yml",true);
include "../includes/layout.php";
?>
</body>
</html>

View file

@ -1,12 +0,0 @@
<html>
<head>
<title>Actcur Available Sites</title>
</head>
<body>
<?php
include "../../includes/retrieve_data.php";
$data = retrieve_data("../../../sitedata.yml",true);
include "../../includes/layout.php";
?>
</body>
</html>

View file

@ -4,9 +4,9 @@
</head>
<body>
<?php
include "../../includes/retrieve_data.php";
$data = retrieve_data("../../../sitedata.yml",true);
include "../../includes/layout.php";
include "../includes/retrieve_data.php";
$data = retrieve_data("../../sitedata.yml",true);
include "../includes/layout.php";
echo "<br /><br /> <br /><div class='login'><a class='login_link' href='https://authelia.actcur.com?redirect=https%3A%2F%2Fportal.actcur.com%2F'>Log In</a></div>";
?>
</body>