mirror of
https://github.com/JannikKoester/Tischverwaltung.git
synced 2026-01-09 14:20:08 +01:00
Compare commits
3 Commits
7fe58aa025
...
8d752a381b
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8d752a381b | ||
|
|
48ba18da23 | ||
|
|
00866d0c65 |
@@ -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;
|
||||
|
||||
@@ -18,6 +18,7 @@ if (session_status() == PHP_SESSION_NONE) {
|
||||
require 'settings.php';
|
||||
require 'modal.php';
|
||||
?>
|
||||
|
||||
<div class="container-fluid">
|
||||
|
||||
|
||||
|
||||
@@ -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);
|
||||
|
||||
@@ -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>
|
||||
@@ -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");
|
||||
}
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user