forked from team/site
1
0
Fork 0

removing admin dir

This commit is contained in:
Ben Harris 2018-06-11 22:04:46 -04:00
parent 5120294b00
commit 97caea7f6b
1 changed files with 0 additions and 27 deletions

View File

@ -1,27 +0,0 @@
<?php
include __DIR__.'/../header.php';
if (empty($_POST["username"]) || empty($_POST["password"])) {
} else {
$usr = urlencode($_POST["username"]);
$pwd = urlencode($_POST["password"]);
$auth = json_decode(file_get_contents("https://auth.tilde.team/?json&user=$usr&pw=$pwd"))->sudoer;
if ($auth) {
echo "you're a sudoer";
} else {
echo "you don't have sudo. go away.";
}
}
?>
<h1>tilde.team admin console</h1>
<form method="post">
<input class="form-control" name="username" type="text">
<input class="form-control" name="password" type="password">
<input class="btn btn-default" type="submit" value="log in">
</form>
<?php
include __DIR__.'/../footer.php';