mirror of
https://github.com/JannikKoester/Tischverwaltung.git
synced 2026-01-10 06:40:07 +01:00
Compare commits
3 Commits
7fe58aa025
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8d752a381b | ||
|
|
48ba18da23 | ||
|
|
00866d0c65 |
@@ -1,15 +1,11 @@
|
|||||||
|
|
||||||
body {
|
body {
|
||||||
background: url(../../assets/img/mountain_bg.jpg) #444;
|
background: url(../../assets/img/mountain_bg.jpg) blue;
|
||||||
background-size: cover;
|
height:100%;
|
||||||
padding-bottom: 80px;
|
padding-bottom: 80px;
|
||||||
|
background-repeat:no-repeat;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width:768px) {
|
|
||||||
.header-dark {
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.header-dark .navbar {
|
.header-dark .navbar {
|
||||||
background: transparent;
|
background: transparent;
|
||||||
|
|||||||
@@ -18,6 +18,7 @@ if (session_status() == PHP_SESSION_NONE) {
|
|||||||
require 'settings.php';
|
require 'settings.php';
|
||||||
require 'modal.php';
|
require 'modal.php';
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<div class="container-fluid">
|
<div class="container-fluid">
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -88,8 +88,8 @@ if(isset($_POST['dbConfigBtn']))
|
|||||||
$conn = new mysqli($servername, $username, $password,$db);
|
$conn = new mysqli($servername, $username, $password,$db);
|
||||||
// Check connection
|
// Check connection
|
||||||
if ($conn->connect_error) {
|
if ($conn->connect_error) {
|
||||||
die("Connection failed: " . $conn->connect_error);
|
header("location:install.php");
|
||||||
}
|
}
|
||||||
|
|
||||||
?>';
|
?>';
|
||||||
fwrite($settingsfile, $txt);
|
fwrite($settingsfile, $txt);
|
||||||
|
|||||||
@@ -13,14 +13,5 @@
|
|||||||
<link rel="stylesheet" href="assets/css/styles.css">
|
<link rel="stylesheet" href="assets/css/styles.css">
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<div class="footer-dark">
|
|
||||||
<footer>
|
|
||||||
<div class="container">
|
|
||||||
<div class="row">
|
|
||||||
</div>
|
|
||||||
<p class="copyright">Rene Knipschild © 2020</p>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
</div>
|
|
||||||
<script src="assets/js/jquery.min.js"></script>
|
<script src="assets/js/jquery.min.js"></script>
|
||||||
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
|
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
|
||||||
@@ -9,7 +9,7 @@
|
|||||||
$conn = new mysqli($servername, $username, $password,$db);
|
$conn = new mysqli($servername, $username, $password,$db);
|
||||||
// Check connection
|
// Check connection
|
||||||
if ($conn->connect_error) {
|
if ($conn->connect_error) {
|
||||||
die("Connection failed: " . $conn->connect_error);
|
header("location:install.php");
|
||||||
}
|
}
|
||||||
|
|
||||||
?>
|
?>
|
||||||
Reference in New Issue
Block a user