Merge remote-tracking branch 'origin/main' into main
This commit is contained in:
commit
47b0e2c33d
|
@ -826,62 +826,6 @@ image_gruppenavn{
|
||||||
top: 5px;
|
top: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*Adminside*/
|
/*Lodtrækning*/
|
||||||
|
|
||||||
|
/*Lodtrækning slut*/
|
||||||
#startTime {
|
|
||||||
border-radius: 10px;
|
|
||||||
color: #474747;
|
|
||||||
background-color: rgba(255, 255, 255, .55);
|
|
||||||
border: double;
|
|
||||||
filter: invert(90%);
|
|
||||||
}
|
|
||||||
|
|
||||||
#endTime {
|
|
||||||
border-radius: 10px;
|
|
||||||
color: #474747;
|
|
||||||
background-color: rgba(255, 255, 255, .55);
|
|
||||||
border: double;
|
|
||||||
filter: invert(90%);
|
|
||||||
}
|
|
||||||
|
|
||||||
#startDate {
|
|
||||||
border-radius: 10px;
|
|
||||||
color: #474747;
|
|
||||||
background-color: rgba(255, 255, 255, .55);
|
|
||||||
border: double;
|
|
||||||
filter: invert(90%);
|
|
||||||
}
|
|
||||||
|
|
||||||
#endDate {
|
|
||||||
border-radius: 10px;
|
|
||||||
/*color: rgb(18, 18, 18);*/
|
|
||||||
color: #474747;
|
|
||||||
background-color: rgba(255, 255, 255, .55);
|
|
||||||
border: double;
|
|
||||||
filter: invert(90%);
|
|
||||||
}
|
|
||||||
|
|
||||||
#nameOfGameJam {
|
|
||||||
background-color: rgb(18, 18, 18);
|
|
||||||
color: rgba(255, 255, 255, .55);
|
|
||||||
border-radius: 15px;
|
|
||||||
border: double;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
#description {
|
|
||||||
|
|
||||||
background-color: rgb(18, 18, 18);
|
|
||||||
color: rgba(255, 255, 255, .55);
|
|
||||||
border-radius:15px;
|
|
||||||
border:double;
|
|
||||||
|
|
||||||
}
|
|
||||||
#indsend {
|
|
||||||
border-radius: 10px;
|
|
||||||
color: rgba(255, 255, 255, .55);
|
|
||||||
background-color: rgb(18, 18, 18);
|
|
||||||
border: double;
|
|
||||||
}
|
|
||||||
/*Adminside slut*/
|
|
|
@ -1,13 +1,8 @@
|
||||||
<?php
|
<?php
|
||||||
require "vendor/autoload.php";
|
require_once "vendor/autoload.php";
|
||||||
use Illuminate\Database\Capsule\Manager as Capsule;
|
use Illuminate\Database\Capsule\Manager as Capsule;
|
||||||
$capsule = new Capsule;
|
$capsule = new Capsule;
|
||||||
$capsule->addConnection([
|
$con = json_decode(file_get_contents('config/database.json', true), true);
|
||||||
"driver" => "mysql",
|
$capsule->addConnection($con);
|
||||||
"host" =>"localhost",
|
|
||||||
"database" => "TestDB",
|
|
||||||
"username" => "root",
|
|
||||||
"password" => "V#_xWL6_"
|
|
||||||
]);
|
|
||||||
$capsule->setAsGlobal();
|
$capsule->setAsGlobal();
|
||||||
$capsule->bootEloquent();
|
$capsule->bootEloquent();
|
||||||
|
|
|
@ -1,10 +1,15 @@
|
||||||
{
|
{
|
||||||
"require": {
|
"require": {
|
||||||
"illuminate/database": "^8.30"
|
"illuminate/database": "^8.30",
|
||||||
|
"ext-mysqli": "*",
|
||||||
|
"ext-sqlite3": "*",
|
||||||
|
"ext-fileinfo": "*"
|
||||||
},
|
},
|
||||||
"autoload": {
|
"autoload": {
|
||||||
"classmap": [
|
"classmap": [
|
||||||
"Backend/Models"
|
"Backend/Models"
|
||||||
]
|
]
|
||||||
}
|
},
|
||||||
|
"name": "",
|
||||||
|
"description": ""
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
||||||
"This file is @generated automatically"
|
"This file is @generated automatically"
|
||||||
],
|
],
|
||||||
"content-hash": "f8dc5027639f0368374ccb33723ddcd2",
|
"content-hash": "ad0077c071ef4b41a72fb0922a0643e4",
|
||||||
"packages": [
|
"packages": [
|
||||||
{
|
{
|
||||||
"name": "doctrine/inflector",
|
"name": "doctrine/inflector",
|
||||||
|
@ -1625,7 +1625,9 @@
|
||||||
"stability-flags": [],
|
"stability-flags": [],
|
||||||
"prefer-stable": false,
|
"prefer-stable": false,
|
||||||
"prefer-lowest": false,
|
"prefer-lowest": false,
|
||||||
"platform": [],
|
"platform": {
|
||||||
|
"ext-mysqli": "*"
|
||||||
|
},
|
||||||
"platform-dev": [],
|
"platform-dev": [],
|
||||||
"plugin-api-version": "2.0.0"
|
"plugin-api-version": "2.0.0"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue