moved authenticated/unauthenticated from index files in subdirs to named files in public
This commit is contained in:
parent
2e8a80b2b9
commit
dc319aa101
3 changed files with 15 additions and 15 deletions
12
public/authenticated.php
Normal file
12
public/authenticated.php
Normal 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>
|
|
@ -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>
|
|
@ -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>
|
Loading…
Add table
Reference in a new issue