1
0
mirror of https://github.com/Foltik/Shimapan synced 2024-09-22 03:39:30 -04:00
shimapan/templates/panel/index.swig

14 lines
467 B
Plaintext
Raw Normal View History

2016-08-14 10:21:53 -04:00
{% include "../../includes/locked.swig" %}
{% include "../../includes/header.swig" %}
<p>Welcome, <?php echo $_SESSION['user']; ?></p>
<?php
require_once '../includes/database.inc.php';
global $db;
$q = $db->prepare("SELECT apikey FROM accounts WHERE user = (:user)");
$q->bindValue(':user', $_SESSION['user']);
$q->execute();
$result = $q->fetch();
echo 'Your API key is '.$result['apikey'];
?>
2016-08-14 10:21:53 -04:00
{% include "../../includes/footer.swig" %}