Layout redesign.

- In a seperate commit from the stylesheet changes. Work in progress.
This commit is contained in:
Gitea 2020-06-22 03:44:10 -04:00
parent f416e08d54
commit 720dcc89eb
12 changed files with 229 additions and 197 deletions

View File

@ -1,6 +1,9 @@
<DOCTYPE html>
<html>
<head></head>
<html lang="en">
<head>
</head>
<body style="text-align: center">
<audio controls autoplay>
<source src="alive.ogg" type="audio/wav">

View File

@ -1,6 +1,5 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Quartznet | About</title>
@ -25,5 +24,4 @@
<?php include "../includes/footer.php" ?>
</body>
</html>

View File

@ -1,7 +1,6 @@
<?php require_once("./auth.php"); auth(); ?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Quartznet | Admin</title>
@ -10,21 +9,39 @@
<body>
<header>
<div class="container">
<nav>
<a class="title" href="/quartznet/">Quartznet</a>
<div class="container">
<ul class="menu">
<li><a href="/quartznet/">Home</a></li>
<li><a href="/quartznet/about">About</a></li>
<li><a href="/quartznet/contact">Contact</a></li>
<li><a href="/quartznet/admin">Admin</a></li>
<li><a href="https://quartznet.info/sound">Sound</a></li>
<li><a href="https://quartznet.info/status">Status</a></li>
<li><a href="https://quartznet.info/git">Git</a></li>
<li><a href="https://quartznet.info/sql">SQL</a></li>
<li><a href="/quartznet/admin/logout.php">Logout</a></li>
<li><a class="link" href="https://quartznet.info/sound">Sound</a></li>
<li><a class="link" href="https://quartznet.info/status">Status</a></li>
<li><a class="link" href="https://quartznet.info/git">Git</a></li>
<li><a class="link" href="https://quartznet.info/sql">SQL</a></li>
<li><a class="link" href="/quartznet/admin/logout.php">Logout</a></li>
<!-- <li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Admin
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="https://quartznet.info/sound">Sound</a>
<a class="dropdown-item" href="https://quartznet.info/status">Status</a>
<a class="dropdown-item" href="https://quartznet.info/git">Git</a>
<a class="dropdown-item" href="https://quartznet.info/sql">SQL</a>
<a class="dropdown-item" href="/quartznet/admin/logout.php">Logout</a>
</div>
</li> -->
</ul>
</div>
</nav>
<div class="overlay">
<div class="description">
<h1 class="title">Quartznet</h1>
<p>Software, Games, Science, Space!</p>
</div>
</header>
@ -69,10 +86,8 @@
</div>
</form>
</section>
</main>
<?php include "../includes/footer.php" ?>
</body>
</html>

View File

@ -5,26 +5,25 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Quartznet | Login</title>
<?php include "../includes/head.php" ?>
</head>
<body>
<?php include "../includes/header.php" ?>
<main>
<section class="container">
<div class="col-sm-9 col-md-7 col-lg-5 mx-auto">
<h2 class="card-title">Login</h2>
<main class="container">
<form class="form-signin" action="login.php" method="post">
<div class="form-label-group">
<input type="text" id="username" class="form-control" name="username" placeholder="Username" required autofocus>
<label for="username">Username</label>
<input type="text" id="username" class="form-control" name="username" placeholder="Username" required autofocus>
</div>
<div class="form-label-group">
<input type="password" id="password" class="form-control" name="password" placeholder="Password" required>
<label for="inputPassword">Password</label>
<input type="password" id="password" class="form-control" name="password" placeholder="Password" required>
</div>
<div class="custom-control custom-checkbox mb-3">
@ -33,12 +32,8 @@
</div>
<button class="btn btn-lg btn-primary btn-block text-uppercase" type="submit">Sign in</button>
</form>
</div>
</section>
</main>
<?php include "../includes/footer.php" ?>
</body>
</html>

0
admin/logout.php Normal file → Executable file
View File

1
admin/users.php Normal file → Executable file
View File

@ -56,5 +56,4 @@ $rows = pg_num_rows($result);
</main>
<?php include "../includes/footer.php" ?>
</html>

View File

@ -1,6 +1,5 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Quartznet | Contact</title>
@ -25,5 +24,4 @@
<?php include "../includes/footer.php" ?>
</body>
</html>

View File

@ -1,5 +1,18 @@
<footer>
<div class="container">
<p>&copy; Quartznet 2020 <a href="/quartznet/policy">Policy</a></p>
<hr>
<p>&copy; Quartznet 2020 | <a href="/quartznet/policy">Policy</a></p>
</div>
</footer>
<!-- Used for nav bar dropdown with smaller screens-->
<script src="/quartznet/assets/js/jquery-3.5.1.min.js" defer></script>
<script src="/quartznet/assets/js/bootstrap.bundle.min.js" defer></script>
<script>
const toggleSwitch = document.querySelector('.theme-switch input[type="checkbox"]');
document.documentElement.setAttribute('data-theme', 'dark');
// var clientHeight = document.getElementsByClassName('overlay')[0].clientHeight;
// alert(clientHeight);
</script>

View File

@ -1,15 +1,25 @@
<header>
<div class="container">
<nav>
<a class="title" href="/quartznet/">Quartznet</a>
<!-- <h2>Software and Game developers</h2> -->
<ul class="menu">
<nav class="navbar navbar-expand-md">
<div class="navbar-collapse order-1 order-md-0 dual-collapse2">
<ul class="navbar-nav mr-auto">
<li><a href="/quartznet/">Quartznet</a></li>
<li><a href="/quartznet/about">About</a></li>
<li><a href="/quartznet/contact">Contact</a></li>
<!-- <li><a href="/quartznet/contact">Contact</a></li> -->
<!-- <li><a href="/quartznet/contact">Contact</a></li> -->
</ul>
</div>
<div class="navbar-collapse collapse w-100 order-3 dual-collapse2">
<ul class="navbar-nav ml-auto">
<li><a href="/quartznet/admin">Admin</a></li>
</ul>
</div>
</nav>
</div>
<div class="overlay">
<div class="description">
<h1 class="title">Quartznet</h1>
<p>Software, Games, Science, Space!</p>
</div>
</div>
</header>

View File

@ -1,7 +1,8 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Quartznet | Sirius</title>
<!-- General meta tags -->
<meta charset="utf-8">
<meta content='text/html; charset=utf-8' http-equiv='Content-Type'>
@ -11,25 +12,18 @@
<meta name="keywords" content="quartznet, software, games, tools"/>
<meta name="author" content="quartznet"/>
<!-- Open Graph meta tags -->
<!-- Open Graph tags -->
<meta property="og:title" content="quartznet" />
<meta property="og:description" content="We are software and game developers." />
<title>Quartznet</title>
<!-- Load CSS -->
<link rel="stylesheet" href="/quartznet/assets/css/normalize.css">
<link rel="stylesheet" href="/quartznet/assets/css/bootstrap.min.css" defer>
<link href="/quartznet/assets/css/stylesheet.css" rel="stylesheet">
<link href="/quartznet/assets/css/themes.css" rel="stylesheet">
<!-- <link rel="stylesheet" href="/quartznet/assets/css/dark.css" media="(prefers-color-scheme: dark)"> -->
<!-- <link rel="stylesheet" href="/quartznet/assets/css/light.css" media="(prefers-color-scheme: no-preference), (prefers-color-scheme: light)"> -->
<!-- Load fonts -->
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet">
<link rel="icon" href="/quartznet/assets/favicon.ico">
<!-- Load icons -->
<link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-120787474-1"></script>
<script>
@ -44,25 +38,34 @@
<body>
<?php include "includes/header.php" ?>
<main>
<section class="container">
<h1>Sirius</h1>
<a href="/quartznet/sirius"><img class="img-fluid rounded mb-4 mb-lg-0" src="https://placehold.it/600x300" alt=""></a>
<main class="container">
<!-- Project One -->
<div class="row">
<div class="col-md-7">
<a href="/quartznet/sirius">
<img class="img-fluid mb-3 mb-md-0" src="https://placehold.it/600x300" alt="">
</a>
</div>
<div class="col-md-5">
<h3>Sirius</h3>
<p>A 2D sci-fi game about wannabe space captain trying to find their path.</p>
<p>Stores: Steam, Itch</p>
<p>Platforms: Windows, Mac, Linux</p>
</section>
</div>
</div>
<hr>
<section class="container">
<h1>quartz wave real name TBA</h1>
<a href="/quartznet/sirius"><img class="img-fluid rounded mb-4 mb-lg-0" src="https://placehold.it/600x300" alt=""></a>
<p>More text here soonTM.</p>
<p>Stores: Steam, Itch</p>
<p>Platforms: Windows, Mac, Linux</p>
</section>
<!-- Project Two -->
<div class="row">
<div class="col-md-7">
<a href="/quartznet/sirius">
<img class="img-fluid mb-3 mb-md-0" src="https://placehold.it/600x300" alt="">
</a>
</div>
<div class="col-md-5">
<h3>Quartz</h3>
</div>
</div>
</main>
<?php include "includes/footer.php" ?>
</body>
</html>

View File

@ -25,6 +25,7 @@
This Log Data may include information such as your computer's Internet Protocol ("IP") address, browser type, browser version, the pages of my Site that you visit, the time and date of your visit, the time spent on those pages and other statistics.</p>
<p>In addition, I may use third party services such as Google Analytics that collect, monitor and analyze this.</p>
<hr>
</section>
<section class="container">
@ -48,5 +49,4 @@
<?php include "../includes/footer.php" ?>
</body>
</html>

View File

@ -1,6 +1,5 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Quartznet | Sirius</title>
@ -20,5 +19,4 @@
<?php include "../includes/footer.php" ?>
</body>
</html>