initial commit

This commit is contained in:
Luke Ogburn
2019-03-30 22:43:34 -04:00
commit c4a666e3b6
78 changed files with 5332 additions and 0 deletions

7
user/login.php Normal file
View File

@@ -0,0 +1,7 @@
<?php
require_once("config.php");
$authUrl = $client->createAuthUrl();
header("Location: ".$authUrl);
?>