1
0
mirror of https://github.com/JannikKoester/Tischverwaltung.git synced 2026-01-08 22:10:07 +01:00

Compare commits

...

3 Commits

Author SHA1 Message Date
Jannik
8d752a381b . 2020-08-19 12:30:57 +03:00
Jannik
48ba18da23 . 2020-08-19 11:50:16 +03:00
Jannik
00866d0c65 errorhandling hinzugefügt 2020-08-19 11:33:26 +03:00
5 changed files with 8 additions and 20 deletions

View File

@@ -1,15 +1,11 @@
body {
background: url(../../assets/img/mountain_bg.jpg) #444;
background-size: cover;
background: url(../../assets/img/mountain_bg.jpg) blue;
height:100%;
padding-bottom: 80px;
background-repeat:no-repeat;
}
@media (min-width:768px) {
.header-dark {
}
}
.header-dark .navbar {
background: transparent;

View File

@@ -18,6 +18,7 @@ if (session_status() == PHP_SESSION_NONE) {
require 'settings.php';
require 'modal.php';
?>
<div class="container-fluid">

View File

@@ -88,8 +88,8 @@ if(isset($_POST['dbConfigBtn']))
$conn = new mysqli($servername, $username, $password,$db);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
header("location:install.php");
}
?>';
fwrite($settingsfile, $txt);

View File

@@ -13,14 +13,5 @@
<link rel="stylesheet" href="assets/css/styles.css">
</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/bootstrap/js/bootstrap.min.js"></script>

View File

@@ -9,7 +9,7 @@
$conn = new mysqli($servername, $username, $password,$db);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
header("location:install.php");
}
?>