2018-03-11 12:07:57 +01:00
|
|
|
<!DOCTYPE HTML>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>Halcyon for Mastodon</title>
|
|
|
|
<link rel="shortcut icon" href="/assets/images/favicon.ico">
|
|
|
|
<link rel="stylesheet" href="/login/assets/css/style.css" media="all">
|
|
|
|
<link rel="stylesheet" href="//cdn.staticfile.org/font-awesome/4.7.0/css/font-awesome.min.css" media="all">
|
2018-03-26 18:26:44 +02:00
|
|
|
<link rel="stylesheet" href="//cdn.staticfile.org/cookieconsent2/3.0.4/cookieconsent.min.css">
|
2018-03-11 12:07:57 +01:00
|
|
|
<script src="//yastatic.net/jquery/3.2.1/jquery.min.js"></script>
|
2018-03-26 18:26:44 +02:00
|
|
|
<script src="//cdn.staticfile.org/cookieconsent2/3.0.4/cookieconsent.min.js"></script>
|
2018-03-11 12:07:57 +01:00
|
|
|
<script src="/assets/js/jquery-cookie/src/jquery.cookie.js"></script>
|
|
|
|
<script src="/login/assets/js/halcyon_login.js"></script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header id="header">
|
|
|
|
<div id="header_wrap">
|
|
|
|
<div id="header_title_wrap" class="header_box header_right_box">
|
|
|
|
<div class="header_box_child title_box">
|
|
|
|
<a href="/">
|
|
|
|
<img src="/login/assets/images/halcyon-title.png" alt="Halcyon for mastodon"/>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div id="header_menu_wrap" class="header_box header_left_box">
|
|
|
|
<nav class="header_box_child nav_box">
|
|
|
|
<ul>
|
|
|
|
<a href="https://social.csswg.org/@halcyon" class="no-underline">
|
|
|
|
<li>
|
|
|
|
<span><i class="fa fa-newspaper-o" aria-hidden="true"></i>News</span>
|
|
|
|
</li>
|
|
|
|
</a>
|
|
|
|
<a href="https://github.com/halcyon-suite/halcyon" class="no-underline">
|
|
|
|
<li>
|
|
|
|
<span><i class="fa fa-code" aria-hidden="true"></i>Source</span>
|
|
|
|
</li>
|
|
|
|
</a>
|
|
|
|
<a class="no-underline">
|
|
|
|
<li>
|
|
|
|
<span><i class="fa fa-balance-scale" aria-hidden="true"></i>Terms</span>
|
|
|
|
</li>
|
|
|
|
</a>
|
|
|
|
<a href="http://www.nikisoft.one/contact.php" class="no-underline">
|
|
|
|
<li>
|
|
|
|
<span><i class="fa fa-envelope" aria-hidden="true"></i>Contact</span>
|
|
|
|
</li>
|
|
|
|
</a>
|
2018-03-26 18:26:44 +02:00
|
|
|
<a href="/login/#login_form_wrap" class="no-underline">
|
2018-03-11 12:07:57 +01:00
|
|
|
<li>
|
|
|
|
<span><i class="fa fa-user-circle-o" aria-hidden="true"></i>Login</span>
|
|
|
|
</li>
|
|
|
|
</a>
|
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</header>
|
2018-03-26 18:26:44 +02:00
|
|
|
<?php $config = parse_ini_file('../config.ini',true) ?>
|
2018-03-11 12:07:57 +01:00
|
|
|
<main id="main">
|
|
|
|
<article id="article">
|
2018-04-01 19:30:47 +02:00
|
|
|
<h2>Halcyon Terms of Use</h2>
|
|
|
|
<p class="description">This terms of use agreement is for the users of web service Halcyon for Mastodon (Halcyon for short) hosted at <a href="<?php echo $config["App"]["api_client_website"] ?>"><?php echo $config["App"]["api_client_website"] ?></a>.</p><br/>
|
|
|
|
<?php echo file_get_contents("../terms.txt") ?>
|
2018-03-11 12:07:57 +01:00
|
|
|
</article>
|
|
|
|
</main>
|
|
|
|
<footer id="footer">
|
|
|
|
<div class="footer_anchor">
|
|
|
|
<a href="#">
|
|
|
|
<i class="fa fa-angle-up" aria-hidden="true"></i>
|
|
|
|
</a>
|
|
|
|
</div>
|
2018-03-26 18:26:44 +02:00
|
|
|
<span>Halcyon version <?php echo file_get_contents("../version.txt") ?></span>
|
2018-03-11 12:07:57 +01:00
|
|
|
</footer>
|
2018-03-26 18:26:44 +02:00
|
|
|
</body>
|
|
|
|
<script>
|
|
|
|
window.cookieconsent.initialise({
|
|
|
|
"palette": {
|
|
|
|
"popup": {
|
|
|
|
"background": "#000"
|
|
|
|
},
|
|
|
|
"button": {
|
|
|
|
"background": "#f1d600"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"theme": "classic",
|
|
|
|
"position": "bottom"
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</html>
|