This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if (!defined('BASEPATH')) | |
exit('No direct script access allowed'); | |
// ------------------------------------------------------------------------ | |
/** | |
* Firephp helper | |
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import NextAuth from "next-auth"; | |
import Providers from "next-auth/providers"; | |
const options = { | |
providers: [ | |
Providers.Credentials({ | |
// The name to display on the sign in form (e.g. 'Sign in with...') | |
name: 'Credentials', | |
// The credentials is used to generate a suitable form on the sign in page. | |
// You can specify whatever fields you are expecting to be submitted. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang=en> | |
<head> | |
<meta charset=utf-8> | |
<title>Coming Soon!</title> | |
<style> | |
#bg { | |
position: fixed; | |
top: 0; | |
left: 0; |