userConifg section in participo
This commit is contained in:
0
homepage/participo/lib/userConfig.php
Normal file
0
homepage/participo/lib/userConfig.php
Normal file
132
homepage/participo/user.php
Normal file
132
homepage/participo/user.php
Normal file
@@ -0,0 +1,132 @@
|
||||
<?php
|
||||
setlocale (LC_ALL, 'de_DE@euro', 'de_DE', 'de', 'ge');
|
||||
require_once("config/participo.php");
|
||||
|
||||
require_once("./local/dbConf.php");
|
||||
require_once("./local/cwsvJudo.php");
|
||||
|
||||
require_once("./lib/db.php");
|
||||
require_once("./lib/api.php");
|
||||
|
||||
require_once("./auth.php");
|
||||
|
||||
require_once($config['basePath']."/config/cwsvJudo.config.php");
|
||||
require_once($config['basePath']."/config/phpcount.config.php");
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
|
||||
<?php
|
||||
include("./shared/imports.php");
|
||||
?>
|
||||
<!-- inits for the materializeCss -->
|
||||
<script>
|
||||
document.addEventListener('DOMContentLoaded', function() {
|
||||
var elems = document.querySelectorAll('.sidenav');
|
||||
var instances = M.Sidenav.init(elems, {
|
||||
// specify options here
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
<title>User-Config</title>
|
||||
<meta name="description" content="Benutzereinstellungen">
|
||||
|
||||
<link rel="icon" href="<?echo($config['ressourceUrl']);?>/graphiken/icons/cwsv.ico" />
|
||||
<link rel="apple-touch-icon" href="<?echo($config['baseUrl']);?>/apple-touch-icon.png">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<header>
|
||||
<nav class="indigo darken-4">cwsvJudo Apps<a class="right top-nav sidenav-trigger waves-effect waves-light hide-on-large-only" href="#" data-target="nav-mobile">
|
||||
<i class="material-icons">menu</i>
|
||||
</a></nav>
|
||||
<ul class="sidenav sidenav-fixed sidenav-close" id="nav-mobile">
|
||||
<li class="logo">
|
||||
<a style="height:auto;" class="brand-logo" id="logo-container" href="/participo/">
|
||||
<img style="max-width:100%;height:12vh;" class="responsive-img" src="http://cwsvjudo.bplaced.net/ressourcen/graphiken/logos/cwsvJudoLogoWappen.x256.png" />
|
||||
</a>
|
||||
</li>
|
||||
<li><?php require_once("sidenav/loginStatus.php");?></li>
|
||||
<li class="bold">
|
||||
<a class="waves-effect waves-teal" href="#AppList">Apps</a>
|
||||
</li>
|
||||
<li class="bold">
|
||||
<a class="waves-effect waves-teal" href="#Configs">UserInfos</a>
|
||||
</li>
|
||||
</ul>
|
||||
</header>
|
||||
|
||||
<?php
|
||||
if($_SESSION['login']){
|
||||
?>
|
||||
<main>
|
||||
<!-- List of Mitmach-Apps -->
|
||||
<div class="row" id="AppList">
|
||||
<div style="padding:1%;" class="col s12 m6">
|
||||
<div style="margin:1%;" class="card blue-grey darken-1">
|
||||
<a href="kyu"><div class="card-content white-text">
|
||||
<span class="card-title">Kyu</span>
|
||||
<img style="max-height:10vh;" class="responsive-img" src="images/obi.svg" />
|
||||
<p>Die Prüfungsprogamme der einzelnen Gürtelstufen in Bild Ton und Text.</p>
|
||||
</div><a>
|
||||
<div class="card-action">
|
||||
<a href="kyu">Kuy-Programme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div style="padding:1%;" class="col s12 m6">
|
||||
<div class="card blue-grey darken-1">
|
||||
<a href="/machs"><div class="card-content white-text">
|
||||
<span class="card-title">Mein Achievement System</span>
|
||||
<img style="max-height:10vh;" class="responsive-img" src="images/mountain-climber.svg" />
|
||||
<p>Ein kleines Achievementsystem für die tägliche Herausforderung</p>
|
||||
</div><a>
|
||||
<div class="card-action">
|
||||
<a href="/machs">mAchS</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div style="padding:1%;" class="col s12 m6">
|
||||
<div class="card blue-grey darken-1">
|
||||
<a href="/pages/desktop/wkParticipo"><div class="card-content white-text">
|
||||
<span class="card-title">Event-Planer</span>
|
||||
<img style="max-height:10vh;" class="responsive-img" src="/ressourcen/graphiken/icons/terminKalender.svg" />
|
||||
<p>Organisieren der Teilnahmen (und nicht-Teilnahmen) an Wettkämpfen, Sondertrainingseinheiten, Feiern etc.</p>
|
||||
</div><a>
|
||||
<div class="card-action">
|
||||
<a href="/pages/desktop/wkParticipo">Planer</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="divider"></div>
|
||||
|
||||
<!-- List of ConfigStuff -->
|
||||
<div class="row" id="Configs">
|
||||
<div style="padding:1%;" class="col s12 m6">
|
||||
<div style="margin:1%;" class="card blue-grey darken-1">
|
||||
<a href="http://cwsvjudo.bplaced.net/pages/desktop/wkParticipo/userInfo.php"><div class="card-content white-text">
|
||||
<span class="card-title">User-Infos</span>
|
||||
<img style="max-height:10vh;" class="responsive-img" src="images/obi.svg" />
|
||||
<p>Einstellungen zum Benutzer</p>
|
||||
</div><a>
|
||||
<div class="card-action">
|
||||
<a href="http://cwsvjudo.bplaced.net/pages/desktop/wkParticipo/userInfo.php">Einstellungen</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</main>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user