Many improvement
This commit is contained in:
parent
863aab71ed
commit
677accd35e
@ -118,6 +118,7 @@ a {
|
||||
text-align: center;
|
||||
vertical-align:middle;
|
||||
display: flex;
|
||||
flex-flow: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
@ -126,6 +127,10 @@ a {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.center-txt{
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#li-nextcloud { background-image: url(/img/icons/Nextcloud_Logo.svg); }
|
||||
#li-matrix { background-image: url(/img/icons/Matrix_Logo.svg); }
|
||||
|
||||
|
@ -11,7 +11,6 @@
|
||||
|
||||
<?php include "../common/header.html"; ?>
|
||||
|
||||
<center>
|
||||
|
||||
<div class="cont">
|
||||
|
||||
@ -21,6 +20,5 @@
|
||||
<li><a href="/active-forks/">Gaffelsøker</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</center>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -41,16 +41,15 @@ session_start();
|
||||
<?php include "../common/header.html"; ?>
|
||||
|
||||
<body>
|
||||
<center>
|
||||
|
||||
<div class="cont">
|
||||
<h1>Filopplasting</h1>
|
||||
<p>
|
||||
<h1 class="center-txt">Filopplasting</h1>
|
||||
<p class="center-txt">
|
||||
Her kan du laste opp filer for å dele med andre. Filene kan være maks 5GB.<br /> Serveren ligger i Kristiansand og har 500/500 internet <br />
|
||||
All opplasting skjer på eget ansvar.
|
||||
</p>
|
||||
<div>
|
||||
<a class="btn btn-info" href="http://trygve.me/filopplasting/filer/">Se alle filer</a>
|
||||
<a class="center-txt" href="http://trygve.me/filopplasting/filer/">Se alle filer</a>
|
||||
</div>
|
||||
<hr class="my-4">
|
||||
<div>
|
||||
@ -58,12 +57,46 @@ session_start();
|
||||
<div class="form-group">
|
||||
<input type="hidden" name="<?php echo ini_get("session.upload_progress.name"); ?>" value="123" />
|
||||
<input type="file" name="file" class="" >
|
||||
<button type="submit" class="btn btn-raised btn-primary">Last opp </button>
|
||||
<button type="submit" class="btn btn-primary">Last opp </button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
<?php
|
||||
$errorMSG = '
|
||||
<div class="alert alert-warning" role="alert">
|
||||
Hmmmm 🤔 Her var det visst noe som gikk galt.
|
||||
</div>';
|
||||
|
||||
$bannedMSG = '
|
||||
<div class="alert alert-warning" role="alert">
|
||||
Denne filtypen er ikke tillatt.
|
||||
</div>';
|
||||
|
||||
|
||||
if(isset($_SESSION['fileupload-response'])) {
|
||||
if($_SESSION['fileupload-response'] == "success") {
|
||||
|
||||
$successMSG = '
|
||||
<div class="alert alert-primary center" role="alert">
|
||||
'
|
||||
. $_SESSION['linkData'] .
|
||||
'
|
||||
<button type="button" class="btn btn-primary" onclick="copyToClipboard(\'' . $_SESSION['link'] . '\')">Kopier lenke</button>
|
||||
</div>
|
||||
';
|
||||
|
||||
echo($successMSG);
|
||||
}
|
||||
elseif ($_SESSION['fileupload-response'] == "failed") {
|
||||
echo($errorMSG);
|
||||
}
|
||||
elseif ($_SESSION['fileupload-response'] == "banned") {
|
||||
echo($bannedMSG);
|
||||
}
|
||||
session_destroy();
|
||||
}
|
||||
?>
|
||||
</ul>
|
||||
</div>
|
||||
</center>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -33,17 +33,14 @@
|
||||
|
||||
<?php include "../common/header.html"; ?>
|
||||
|
||||
<center>
|
||||
<div class="cont">
|
||||
|
||||
<h1>Direktesending fra fuglekassa</h1>
|
||||
<h1 class="center-txt">Direktesending fra fuglekassa</h1>
|
||||
<video id="live_stream" class="video-js responsive main-vid vjs-theme-forest" controls autoplay="true" preload="auto"
|
||||
data-setup='{"controls": true, "autoplay": true, "responsive": true, "fluid": true}'>
|
||||
<source src="https://trygve.me:8080/hls/stream.m3u8" type="application/x-mpegURL">
|
||||
</video>
|
||||
</div>
|
||||
</center>
|
||||
</body>
|
||||
<script src="./video-js/video.js"></script>
|
||||
<script>
|
||||
var player = videojs('live_stream');
|
||||
|
32
index.php
32
index.php
@ -6,29 +6,47 @@
|
||||
<meta name="theme-color" content="#263238"/>
|
||||
<link rel="icon" type="image/png" href="/dist/favicon.png">
|
||||
<link rel="stylesheet" href="/css/main.css">
|
||||
|
||||
<style>
|
||||
.btn-bg {
|
||||
width: 90%;
|
||||
height: 90%;
|
||||
background-size: contain;
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
#bg-nextcloud { background-image: url(/img/icons/Nextcloud_Logo.svg); }
|
||||
#bg-matrix { background-image: url(/img/icons/Matrix_Logo.svg); }
|
||||
#bg-meet { background-image: url(/img/icons/Jitsi_Logo.svg);}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
#bg-nextcloud { }
|
||||
#bg-matrix { filter: invert(); }
|
||||
#bg-meet { filter: invert(); }
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body class="theme-auto">
|
||||
|
||||
<?php include "common/header.html"; ?>
|
||||
|
||||
<center>
|
||||
|
||||
<div class="cont">
|
||||
|
||||
<h1>Velkommen til Trygves side!</h1>
|
||||
<h2>Mine prosjekter:</h2>
|
||||
<h1 class="center-txt">Velkommen til Trygves side!</h1>
|
||||
<h2 class="center-txt">Mine prosjekter:</h2>
|
||||
<ul class="service-list">
|
||||
<li><a href="/liveresultater/"><div>Liveresultater</div></a></li>
|
||||
<li><a href="/fuglekasse/"><div>Fuglekasse</div></a></li>
|
||||
<li><a href="/filopplasting/"><div>Filopplasting</div></a></li>
|
||||
</ul>
|
||||
|
||||
<h2>Tjenester:</h2>
|
||||
<h2 class="center-txt">Tjenester:</h2>
|
||||
<ul class="service-list">
|
||||
<li id="li-matrix"><a href="https://riot.trygve.me"></a></li>
|
||||
<li id="li-nextcloud"> <a href="https://nextcloud.trygve.me/"></a></li>
|
||||
<li><a href="/matrix_info"><div class="btn-bg" id="bg-matrix"></div></a></li>
|
||||
<li><a href="/mumble_info"><div>Mumble</div></a></li>
|
||||
<li><a href="https://meet.trygve.me/"><div class="btn-bg" id="bg-meet"></div><div>Meet</div></a></li>
|
||||
<li><a href="https://nextcloud.trygve.me/"><div class="btn-bg" id="bg-nextcloud"></div></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</center>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -16,8 +16,6 @@
|
||||
|
||||
<?php include "../common/header.html"; ?>
|
||||
|
||||
<center>
|
||||
|
||||
<div class="cont">
|
||||
|
||||
<button id="startStopBtn" onclick="startStop()"></button>
|
||||
@ -55,7 +53,6 @@
|
||||
<a href="https://github.com/librespeed/speedtest">Source code</a>
|
||||
|
||||
</div>
|
||||
</center>
|
||||
<script type="text/javascript">setTimeout(function(){initUI()},100);</script>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -67,8 +67,3 @@
|
||||
display:block;
|
||||
margin: 0 auto;
|
||||
}
|
||||
@media all and (max-width:40em){
|
||||
body{
|
||||
font-size:0.8em;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user