summaryrefslogtreecommitdiff
path: root/pages/login.php
diff options
context:
space:
mode:
authorMinteck <contact@minteck.org>2022-10-10 20:51:39 +0200
committerMinteck <contact@minteck.org>2022-10-10 20:51:39 +0200
commit108525534c28013cfe1897c30e4565f9893f3766 (patch)
treedd3e5132971f96ab5f05e7f3f8f6dbbf379a19bd /pages/login.php
parent2162eaa06f7e4764eb3dcfe130ec2c711d0c62ab (diff)
downloadpluralconnect-108525534c28013cfe1897c30e4565f9893f3766.tar.gz
pluralconnect-108525534c28013cfe1897c30e4565f9893f3766.tar.bz2
pluralconnect-108525534c28013cfe1897c30e4565f9893f3766.zip
Update
Diffstat (limited to 'pages/login.php')
-rw-r--r--pages/login.php43
1 files changed, 0 insertions, 43 deletions
diff --git a/pages/login.php b/pages/login.php
deleted file mode 100644
index ebae1ae..0000000
--- a/pages/login.php
+++ /dev/null
@@ -1,43 +0,0 @@
-<?php
-
-require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/init.php"; global $title; global $isLoggedIn;
-require_once $_SERVER['DOCUMENT_ROOT'] . '/includes/header.php';
-
-?>
-
-<br>
-<div class="container">
- <div>
- <h2>Login</h2>
- <?php global $isLoggedIn; if ($isLoggedIn): ?>
- <div class="alert alert-warning">
- <b>You are already logged in.</b> If you want to login to a different account or using a different authentication method, you may do so now.
- </div>
- <?php endif; ?>
- <p>Select how you want to log into Cold Haze.</p>
- <div class="row">
- <div class="col-md-6">
- <div class="card" style="margin-bottom:10px;text-align: center;">
- <div class="card-body">
- <img src="https://git.equestria.dev/equestria.dev/design/raw/branch/mane/logo/dark/banner.svg" style="height:48px;" alt="">
- <h4 class="card-title" style="margin-top:15px;">Equestria.dev Private Authentication</h4>
- <p>For website administrators, allows to change content and access private information.</p>
- <a href="/Authentication/Start" class="btn btn-primary">Continue</a>
- </div>
- </div>
- </div>
- <div class="col-md-6">
- <div class="card" style="margin-bottom:10px;text-align: center;">
- <div class="card-body">
- <img src="https://equestria.horse/assets/favicon.png" style="height:48px;" alt=""><img src="/assets/logo/gitlab.svg" style="height:48px;margin-left:15px;" alt=""><img src="/assets/logo/github.svg" style="height:48px;margin-left:15px;" alt="">
- <h4 class="card-title" style="margin-top:15px;">Equestria.horse/GitLab/GitHub</h4>
- <p>For website users, allows to view more content, ask questions, and set notes for members.</p>
- <a href="#" class="btn btn-primary disabled">Continue</a>
- </div>
- </div>
- </div>
- </div>
- </div>
-</div>
-
-<?php require_once $_SERVER['DOCUMENT_ROOT'] . '/includes/footer.php'; ?>