forked from root/threadr.lostcave.ddnss.de
preparation for complete rewrite
parent
ab6b4127df
commit
469cb2829e
|
@ -1,41 +0,0 @@
|
||||||
<?php
|
|
||||||
$command_file_name = "status_commands.txt";
|
|
||||||
$command_file = fopen($command_file_name, "r") or die("Could not read file $command_file_name. Aborting.");
|
|
||||||
$commands = explode(PHP_EOL, fread($command_file, filesize($command_file_name)));
|
|
||||||
fclose($command_file);
|
|
||||||
?>
|
|
||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<meta http-equiv="refresh" content="20">
|
|
||||||
<link rel="stylesheet" type="text/css" href="common/nalquas_style.css">
|
|
||||||
<link rel="stylesheet" type="text/css" href="status.css">
|
|
||||||
<title> Status Page </title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div class="header">
|
|
||||||
<h1> Website Name </h1>
|
|
||||||
<p>
|
|
||||||
Motto here
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="navbar">
|
|
||||||
<a href="status.php"> Status </a>
|
|
||||||
<a href="#"> Link 2 </a>
|
|
||||||
<a href="#"> Link 3 </a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="grid">
|
|
||||||
<?php
|
|
||||||
foreach ($commands as $command) {
|
|
||||||
echo "<div class=\"panel\"><pre>$command</pre><br /> <pre>";
|
|
||||||
echo shell_exec($command);
|
|
||||||
echo"</pre></div>\n";
|
|
||||||
echo '<br />';
|
|
||||||
} ?>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,172 +0,0 @@
|
||||||
body {
|
|
||||||
background-color: #B6BDBD;
|
|
||||||
font-family: sans;
|
|
||||||
font-size: 12pt;
|
|
||||||
color: #000000;
|
|
||||||
}
|
|
||||||
h1, h2, h3, h4, h5, h6 {
|
|
||||||
font-family: times;
|
|
||||||
}
|
|
||||||
h3, h4, h5, h6 {
|
|
||||||
font-weight: normal;
|
|
||||||
}
|
|
||||||
p {
|
|
||||||
margin-left: 10px;
|
|
||||||
margin-top: 0px;
|
|
||||||
}
|
|
||||||
p.tiny{
|
|
||||||
font-size: 5pt;}
|
|
||||||
|
|
||||||
li {
|
|
||||||
margin-bottom: 1em;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* code blocks */
|
|
||||||
pre {
|
|
||||||
margin-left: 20px;
|
|
||||||
margin-right: 20px;
|
|
||||||
margin-top: 0px;
|
|
||||||
background-color: white;
|
|
||||||
border-style: solid;
|
|
||||||
border-color: #888A85;
|
|
||||||
border-width: 1px;
|
|
||||||
font-size: 11pt;
|
|
||||||
font-family: monospace;
|
|
||||||
}
|
|
||||||
|
|
||||||
pre.commandLine {
|
|
||||||
background-color: #2E3436;
|
|
||||||
color: #C3F097;
|
|
||||||
}
|
|
||||||
|
|
||||||
span.structure {
|
|
||||||
color: #FCAF3E;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
span.primitive {
|
|
||||||
color: #729FCF;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
span.className {
|
|
||||||
color: #8AE234;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
span.type {
|
|
||||||
color: #729FCF;
|
|
||||||
}
|
|
||||||
span.value {
|
|
||||||
color: #C17D11;
|
|
||||||
}
|
|
||||||
span.function {
|
|
||||||
color: #75507B;
|
|
||||||
}
|
|
||||||
span.name {
|
|
||||||
color: #8AE234;
|
|
||||||
}
|
|
||||||
span.comment {
|
|
||||||
color: #888A85;
|
|
||||||
}
|
|
||||||
/* in-line code block */
|
|
||||||
span.codeBlockInText{
|
|
||||||
background-color: white;
|
|
||||||
border-color: black;
|
|
||||||
border-style: solid;
|
|
||||||
border-width: 1px;
|
|
||||||
font-size: 11pt;
|
|
||||||
font-family: monospace;
|
|
||||||
padding-left: 5px;
|
|
||||||
padding-right: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
a {
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
a:link {
|
|
||||||
color: #90BA45;
|
|
||||||
}
|
|
||||||
a:hover {
|
|
||||||
color: #FF2A00;
|
|
||||||
}
|
|
||||||
a:visited {
|
|
||||||
color: #FCAF3E;
|
|
||||||
}
|
|
||||||
|
|
||||||
ul {
|
|
||||||
margin-top: 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
table {
|
|
||||||
position: absolute;
|
|
||||||
top: 0px;
|
|
||||||
left: 0px;
|
|
||||||
border-collapse: collapse;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
td {
|
|
||||||
vertical-align: top;
|
|
||||||
margin: 0px;
|
|
||||||
}
|
|
||||||
td.left {
|
|
||||||
}
|
|
||||||
td.right{
|
|
||||||
}
|
|
||||||
td.content {
|
|
||||||
background-color: #F2F0FF;
|
|
||||||
}
|
|
||||||
td.comment {
|
|
||||||
background-color: #D7DBD7;
|
|
||||||
font-style: italic;
|
|
||||||
font-size: 10pt;
|
|
||||||
}
|
|
||||||
td.comment p {
|
|
||||||
border-left-style: solid;
|
|
||||||
border-left-width: 3px;
|
|
||||||
margin-left: 3px;
|
|
||||||
}
|
|
||||||
p.explanation {
|
|
||||||
border-left-color: #8ED424;
|
|
||||||
}
|
|
||||||
p.general {
|
|
||||||
border-left-color: #888A85;
|
|
||||||
}
|
|
||||||
p.warning {
|
|
||||||
border-left-color: #EF2929;
|
|
||||||
}
|
|
||||||
td.spacer {
|
|
||||||
height: 120px;
|
|
||||||
}
|
|
||||||
@media only screen and (min-width: 1000px) {
|
|
||||||
td.left {
|
|
||||||
border-right-style: solid;
|
|
||||||
border-right-width: 1px;
|
|
||||||
}
|
|
||||||
td.right {
|
|
||||||
border-left-style: solid;
|
|
||||||
border-left-width: 1px;
|
|
||||||
}
|
|
||||||
td.content {
|
|
||||||
width: 800px;
|
|
||||||
}
|
|
||||||
td.comment {
|
|
||||||
width: 200px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 999px) {
|
|
||||||
td.left{
|
|
||||||
width: 0px;
|
|
||||||
}
|
|
||||||
td.right{
|
|
||||||
width: 0px;
|
|
||||||
}
|
|
||||||
td.content {
|
|
||||||
width: 80%;
|
|
||||||
}
|
|
||||||
td.comment {
|
|
||||||
width: 20%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,53 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<link rel="stylesheet" href="style.css" />
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<title> Tab text </title>
|
|
||||||
<!-- this is to be removed in the future -->
|
|
||||||
<style>
|
|
||||||
.disclaimer{
|
|
||||||
font-size: 8pt;
|
|
||||||
color: red;}
|
|
||||||
</style>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<table>
|
|
||||||
<tr><td class="spacer" colspan=4 /></tr>
|
|
||||||
<tr>
|
|
||||||
<td class="left" />
|
|
||||||
<td class="content">
|
|
||||||
<p class="tiny"> Put some joke referring to the site’s contents </p>
|
|
||||||
<h1> Head line </h1>
|
|
||||||
<p class="disclaimer"> Disclaimer: This is a template file. Do not use unedited.
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
Some text here.
|
|
||||||
</p>
|
|
||||||
This is an <span class="codeBlockInText">in-line code block</span>.
|
|
||||||
</td>
|
|
||||||
<td class="comment">
|
|
||||||
<p style="border-style:none;">
|
|
||||||
You will find some comments in this column: </p>
|
|
||||||
<p class="general">
|
|
||||||
General comments are gray. </p>
|
|
||||||
<p class="explanation">
|
|
||||||
Explanations are green and </p>
|
|
||||||
<p class="warning">
|
|
||||||
warnings are red. </p>
|
|
||||||
</td>
|
|
||||||
<td class="right" />
|
|
||||||
</tr>
|
|
||||||
<!-- Keep this here as a copying template!
|
|
||||||
<tr>
|
|
||||||
<td class="left" />
|
|
||||||
<td class="content"> </td>
|
|
||||||
<td class="comment"> </td>
|
|
||||||
<td class="right" />
|
|
||||||
</tr>
|
|
||||||
-->
|
|
||||||
<tr><td class="spacer" colspan=4 /></tr>
|
|
||||||
</table>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
|
@ -1,203 +0,0 @@
|
||||||
/* ================== STYLING ================= */
|
|
||||||
|
|
||||||
* {
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Body styling */
|
|
||||||
body {
|
|
||||||
font-family: sans;
|
|
||||||
font-size: 12pt;
|
|
||||||
color: black;
|
|
||||||
background: #bdbdbd;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1, h2, h3, h4, h5, h6 {
|
|
||||||
font-family: times;
|
|
||||||
}
|
|
||||||
h3, h4, h5, h6 {
|
|
||||||
font-weight: normal;
|
|
||||||
}
|
|
||||||
|
|
||||||
p {
|
|
||||||
margin-top: 0px;
|
|
||||||
}
|
|
||||||
p.tiny {
|
|
||||||
font-size: 5pt;
|
|
||||||
}
|
|
||||||
|
|
||||||
li {
|
|
||||||
margin-bottom: 1em;
|
|
||||||
}
|
|
||||||
|
|
||||||
ul {
|
|
||||||
margin-top: 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
pre {
|
|
||||||
margin-left: 20px;
|
|
||||||
margin-right: 20px;
|
|
||||||
margin-top: 0px;
|
|
||||||
background-color: white;
|
|
||||||
border-style: solid;
|
|
||||||
border-color: #888A85;
|
|
||||||
border-width: 1px;
|
|
||||||
font-size: 11pt;
|
|
||||||
font-family: monospace;
|
|
||||||
}
|
|
||||||
pre.commandLine {
|
|
||||||
background-color: #2E3436;
|
|
||||||
color: #C3F097;
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
a:link {
|
|
||||||
color: #90BA45;
|
|
||||||
}
|
|
||||||
a:hover {
|
|
||||||
color: #FF2A00;
|
|
||||||
}
|
|
||||||
a:visited {
|
|
||||||
color: #FCAF3E;
|
|
||||||
}
|
|
||||||
|
|
||||||
span.structure {
|
|
||||||
color: #FCAF3E;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
span.primitive {
|
|
||||||
color: #729FCF;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
span.className {
|
|
||||||
color: #8AE234;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
span.type {
|
|
||||||
color: #729FCF;
|
|
||||||
}
|
|
||||||
span.value {
|
|
||||||
color: #C17D11;
|
|
||||||
}
|
|
||||||
span.function {
|
|
||||||
color: #75507B;
|
|
||||||
}
|
|
||||||
span.name {
|
|
||||||
color: #8AE234;
|
|
||||||
}
|
|
||||||
span.comment {
|
|
||||||
color: #888A85;
|
|
||||||
}
|
|
||||||
/* in-line code block */
|
|
||||||
span.codeBlockInText{
|
|
||||||
background-color: white;
|
|
||||||
border-color: black;
|
|
||||||
border-style: solid;
|
|
||||||
border-width: 1px;
|
|
||||||
font-size: 11pt;
|
|
||||||
font-family: monospace;
|
|
||||||
padding-left: 5px;
|
|
||||||
padding-right: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.disclaimer {
|
|
||||||
font-size: 8pt;
|
|
||||||
color: red;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* TODO The following is broken because we're not using tables anymore.
|
|
||||||
Find another solution.
|
|
||||||
*/
|
|
||||||
p.explanation {
|
|
||||||
border-left-color: #8ED424;
|
|
||||||
}
|
|
||||||
p.general {
|
|
||||||
border-left-color: #888A85;
|
|
||||||
}
|
|
||||||
p.warning {
|
|
||||||
border-left-color: #EF2929;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ================== LAYOUT ================== */
|
|
||||||
|
|
||||||
/* Header containing title etc. */
|
|
||||||
.header {
|
|
||||||
text-align: center;
|
|
||||||
background: #795548;
|
|
||||||
color: white;
|
|
||||||
padding: 4px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Navigation bar at top of page */
|
|
||||||
.navbar {
|
|
||||||
display: flex;
|
|
||||||
background-color: #4b2c20;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Styling of navigation bar links */
|
|
||||||
.navbar a {
|
|
||||||
color: white;
|
|
||||||
padding: 14px 20px;
|
|
||||||
text-decoration: none;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Change color of navigation bar links on hover */
|
|
||||||
.navbar a:hover {
|
|
||||||
background-color: #a98274;
|
|
||||||
color: black;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Align page elements in a row */
|
|
||||||
.row {
|
|
||||||
display: flex;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Sidebar column */
|
|
||||||
.side {
|
|
||||||
flex: 15%;
|
|
||||||
font-size: 10pt;
|
|
||||||
font-style: italic;
|
|
||||||
background-color: #efefef;
|
|
||||||
padding: 20px;
|
|
||||||
max-width: 500px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Main column */
|
|
||||||
.main {
|
|
||||||
flex: 40%;
|
|
||||||
background-color: #ffffff;
|
|
||||||
padding: 20px;
|
|
||||||
max-width: 1000px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Spacer */
|
|
||||||
.spacer {
|
|
||||||
flex: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Footer */
|
|
||||||
.footer {
|
|
||||||
padding: 20px;
|
|
||||||
text-align: center;
|
|
||||||
background: #8d8d8d;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Adaptively change layout based on window size */
|
|
||||||
@media only screen and (max-width: 1000px) {
|
|
||||||
.spacer {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
.main, .side {
|
|
||||||
max-width: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@media only screen and (max-width: 700px) {
|
|
||||||
.row, .navbar {
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,75 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<link rel="stylesheet" type="text/css" href="nalquas_style.css">
|
|
||||||
<title> Tab text </title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<!-- Title etc. -->
|
|
||||||
<div class="header">
|
|
||||||
<h1> Website Name </h1>
|
|
||||||
<p>
|
|
||||||
Motto here
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- Links to the main page sections -->
|
|
||||||
<div class="navbar">
|
|
||||||
<a href="#"> Link 1 </a>
|
|
||||||
<a href="#"> Link 2 </a>
|
|
||||||
<a href="#"> Link 3 </a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- Content -->
|
|
||||||
<div class="row">
|
|
||||||
<div class="spacer"></div>
|
|
||||||
<div class="main">
|
|
||||||
<p class="tiny">
|
|
||||||
Put some joke referring to the site’s contents
|
|
||||||
</p>
|
|
||||||
<h1> Head line </h1>
|
|
||||||
<p class="disclaimer">
|
|
||||||
Disclaimer: This is a template file. Do not use unedited.
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
Some text here.
|
|
||||||
</p>
|
|
||||||
This is an <span class="codeBlockInText">in-line code block</span>.
|
|
||||||
</div>
|
|
||||||
<div class="side">
|
|
||||||
<p>
|
|
||||||
You will find some comments in this column:
|
|
||||||
</p>
|
|
||||||
<p class="general">
|
|
||||||
General comments are gray.
|
|
||||||
</p>
|
|
||||||
<p class="explanation">
|
|
||||||
Explanations are green and
|
|
||||||
</p>
|
|
||||||
<p class="warning">
|
|
||||||
warnings are red.
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
<div class="spacer"></div>
|
|
||||||
|
|
||||||
<!-- Keep this here as a copying template!
|
|
||||||
<div class="row">
|
|
||||||
<div class="spacer"></div>
|
|
||||||
<div class="main"> </div>
|
|
||||||
<div class="side"> </div>
|
|
||||||
<div class="spacer"></div>
|
|
||||||
</div>
|
|
||||||
-->
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- Footer -->
|
|
||||||
<div class="footer">
|
|
||||||
<p>
|
|
||||||
Typical footer information <br />
|
|
||||||
This page's layout has been reworked by Nalquas.
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,32 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<meta http-equiv="refresh" content="20">
|
|
||||||
<link rel="stylesheet" type="text/css" href="nalquas_style.css">
|
|
||||||
<link rel="stylesheet" type="text/css" href="status.css">
|
|
||||||
<title> Status Page </title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div class="header">
|
|
||||||
<h1> Website Name </h1>
|
|
||||||
<p>
|
|
||||||
Motto here
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="navbar">
|
|
||||||
<a href="status.php"> Status </a>
|
|
||||||
<a href="#"> Link 2 </a>
|
|
||||||
<a href="#"> Link 3 </a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="grid">
|
|
||||||
<div class="panel"><pre>$command</pre><br /> <pre>
|
|
||||||
hjvdusjmcvgsara nfozcd
|
|
||||||
</pre></div>
|
|
||||||
<br />
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
Binary file not shown.
|
@ -1,49 +0,0 @@
|
||||||
* {
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
font-family: monospace;
|
|
||||||
font-size: 12pt;
|
|
||||||
background-color: #0b0b0b;
|
|
||||||
color: #ff6200;
|
|
||||||
}
|
|
||||||
|
|
||||||
pre {
|
|
||||||
margin: 20px;
|
|
||||||
/*border-style: solid;
|
|
||||||
border-width: 2px;
|
|
||||||
border-top: 0px;
|
|
||||||
border-right: 0px;
|
|
||||||
border-left: 0px;
|
|
||||||
border-color: #ff6200;*/
|
|
||||||
border-style: none;
|
|
||||||
background-color: #000000;
|
|
||||||
color: #ff6200;
|
|
||||||
font-family: monospace;
|
|
||||||
font-size: 11pt;
|
|
||||||
min-width: 500px;
|
|
||||||
max-width: 500px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.grid {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
/*align-items: center;
|
|
||||||
justify-content: center;*/
|
|
||||||
flex-wrap: wrap;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Info panel, only used for status pages */
|
|
||||||
.panel {
|
|
||||||
flex: 50%;
|
|
||||||
padding: 4px;
|
|
||||||
padding-bottom: 32px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Adaptively change layout based on window size */
|
|
||||||
/*@media only screen and (max-width: 1000px) {
|
|
||||||
.grid {
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
}*/
|
|
|
@ -1,7 +0,0 @@
|
||||||
who
|
|
||||||
df -h
|
|
||||||
systemctl status apache2.service
|
|
||||||
systemctl status mysql.service
|
|
||||||
systemctl status gitea.service
|
|
||||||
systemctl status sshd
|
|
||||||
apt list --upgradable
|
|
|
@ -1,2 +1,2 @@
|
||||||
sync
|
sync
|
||||||
cat /var/log/apt-get_update_has_run; apt list --upgradable
|
echo "`cat /var/log/apt-get_update_has_run`"; apt list --upgradable
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
systemctl status apache2.service
|
systemctl status apache2.service
|
||||||
systemctl status sshd.service
|
systemctl status sshd.service
|
||||||
systemctl status gitea.service
|
systemctl status gitea.service
|
||||||
|
systemctl status mysql.service
|
||||||
free
|
free
|
||||||
df -h
|
df -h
|
||||||
cat /var/run/reboot-required
|
cat /var/run/reboot-required
|
||||||
|
|
|
@ -1,13 +0,0 @@
|
||||||
<?php
|
|
||||||
$user = $_POST["user"];
|
|
||||||
?>
|
|
||||||
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>e-Mail Verification</title>
|
|
||||||
</head> <body>
|
|
||||||
<?php
|
|
||||||
echo "<p>Bitte senden sie nun zur Verifikation eine e-Mail mit folgendem Inhalt an \"authentication@lostcave.ddnss.de\":</p>";
|
|
||||||
echo "<p>Blub Blub $user</p>";
|
|
||||||
?>
|
|
||||||
</html>
|
|
|
@ -1,6 +1 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta http-equiv="refresh" content="0;./404" />
|
|
||||||
</head>
|
|
||||||
</html>
|
|
||||||
|
|
|
@ -1,17 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
session_start();
|
|
||||||
|
|
||||||
$pdo = new PDO('mysql:host=localhost;dbname=web', 'webstuff', 'Schei// auf Pa$$w0rter!');
|
|
||||||
$statement_auth_by_name = $pdo->prepare('SELECT authentication_salt, authentication_algorithm FROM users WHERE name=:name');
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
$result_auth_by_name = $statement_auth_by_name->execute(array('name' => $_POST['name']));
|
|
||||||
if (!result_auth_by_name) {
|
|
||||||
error_log("An SQL error ocurred while logging in.\nUser: $_POST['name']\n" . $statement_auth_by_name->queryString . "\n" . $statement_auth_by_name->errorInfo()[2]);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
//$result_name_by_auth = $Statement_name_by_auth->execute(array('authentication_string' => $authentication_string));
|
|
||||||
?>
|
|
|
@ -1,20 +0,0 @@
|
||||||
<html>
|
|
||||||
<title>
|
|
||||||
Sign Up
|
|
||||||
</title>
|
|
||||||
|
|
||||||
<head>
|
|
||||||
<h1> Willkommen bei der Registrierung! </h1>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
<hr>
|
|
||||||
<form action="forwarding.php" method="post">
|
|
||||||
<p> Bitte gib einen Benutzernamen ein: <input type="text" name="user" placeholder="Benutzername"/>
|
|
||||||
<p> Bitte gib eine E-Mail Adresse ein: <input type="text" name="email" placeholder="e-Mail Adresse"/>
|
|
||||||
<p> Bitte gib ein Passwort ein: <input type="password" name="password" placeholder="Passwort"/>
|
|
||||||
<p> Bitte bestätige dein Passwort ein: <input type="password" name="pass" placeholder="Passwort bestätigen"/>
|
|
||||||
<input type="submit" value="Registrieren" />
|
|
||||||
</form>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,16 +0,0 @@
|
||||||
<?php
|
|
||||||
$hello = "Hello World!";
|
|
||||||
$blob = 564983;
|
|
||||||
$mulm = "655932";
|
|
||||||
?>
|
|
||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title><?php echo $blob + $mulm; ?></title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<?php
|
|
||||||
echo "<p>" . $hello . "</p>";
|
|
||||||
?>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,4 +1,2 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
#do nothing for now.
|
#do nothing for now.
|
||||||
|
|
||||||
echo "Yeee!"
|
|
||||||
|
|
19
index.html
19
index.html
|
@ -1,18 +1 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>LostCave - Welcome</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<h1>Welcome to the LostCave WebSite!</h1>
|
|
||||||
<p> Login: </p>
|
|
||||||
<form action="./content/login.php" method="post">
|
|
||||||
<input type="text" name="name" maxlength="20" placeholder="Username" />
|
|
||||||
<input type="password" name="password" maxlength="256" placeholder="Password" />
|
|
||||||
<input type="submit" value="Log in" />
|
|
||||||
</form>
|
|
||||||
<form action="./content/signup.php">
|
|
||||||
<input type="submit" value="Sign Up"/>
|
|
||||||
</form>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
|
@ -1,3 +0,0 @@
|
||||||
/*
|
|
||||||
Well yes but actually no.
|
|
||||||
*/
|
|
Loading…
Reference in New Issue