Store in GIT

This commit is contained in:
2026-06-17 11:59:05 +02:00
parent 8e0a44295e
commit 4bc14e8833
155 changed files with 17845 additions and 2 deletions
Binary file not shown.
Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

+78 -1
View File
@@ -1,2 +1,79 @@
# Eigenwijs-Kinderdagverblijf
_____ _ _ _
| ____|(_) __ _ ___ _ __ __ __(_) (_) ___
| _| | | / _` | / _ \| '_ \\ \ /\ / /| | | |/ __|
| |___ | || (_| || __/| | | |\ V V / | | | |\__ \
|_____||_| \__, | \___||_| |_| \_/\_/ |_|_/ ||___/
_ __ _ |___/ _ _ |__/
| |/ /(_) _ __ __| | ___ _ __ __| | __ _ __ _
| ' / | || '_ \ / _` | / _ \| '__|/ _` | / _` | / _` |
| . \ | || | | || (_| || __/| | | (_| || (_| || (_| |
|_|\_\|_||_| |_| \__,_| \___||_| \__,_| \__,_| \__, |
_ _ _ _ __ |___/
__ __ ___ _ __ | |__ | |(_) (_) / _|
\ \ / // _ \| '__|| '_ \ | || | | || |_
\ V /| __/| | | |_) || || | | || _|
\_/ \___||_| |_.__/ |_||_|_/ ||_|
|__/
_____ _____ _____ _____ _____ _____ _____ _____
|_____||_____||_____||_____||_____||_____||_____||_____|
==========
SITE
==========
http://eigenwijs.serghost.com
==========
GROEP
==========
Kenneth van Ewijk
Charles de Beus
Lex van Maasakkers
Daniel Bouhuys
==========
ACCOUNTS
==========
Administrator:
- admin
- asdf123
Heeft volledige toegang tot alle functies op de site.
Werknemer:
- werk
- asdf123
Heeft toegang tot alles behalve werknemers beheren en werknemers aanmaken.
Ouder 1:
- ouder1
- asdf123
Heeft toegang tot ouder functies, heeft 2 kinderen.
Ouder 2:
- ouder2
- asdf123
Heeft toegang tot ouder functies, heeft 1 kind.
==========
OVERIG
==========
Alle werknemer accounts hebben momenteel "mail@eigenwijs.serghost.com" als email adres.
Voordat de wachtwoord vergeten functie getest kan worden is het dus verstandig eerst het email adres aan te passen.
Dit kan door in te loggen.
De email adressen en namen van de 2 ouders komen overeen met Charles en Kenneth.
+282
View File
@@ -0,0 +1,282 @@
-- phpMyAdmin SQL Dump
-- version 4.1.8
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Apr 02, 2014 at 02:59 PM
-- Server version: 5.5.36-cll
-- PHP Version: 5.4.23
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- Database: `eigenwij_db`
--
-- --------------------------------------------------------
--
-- Table structure for table `berichten`
--
CREATE TABLE IF NOT EXISTS `berichten` (
`bericht_id` int(11) NOT NULL AUTO_INCREMENT,
`verzend_id` int(11) NOT NULL,
`ontvang_id` int(11) NOT NULL,
`onderwerp` text NOT NULL,
`inhoud` longtext NOT NULL,
`datum` date NOT NULL,
`gelezen` tinyint(1) NOT NULL DEFAULT '0',
`actief` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`bericht_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;
--
-- Dumping data for table `berichten`
--
INSERT INTO `berichten` (`bericht_id`, `verzend_id`, `ontvang_id`, `onderwerp`, `inhoud`, `datum`, `gelezen`, `actief`) VALUES
(1, 1, 4, 'Welkom', 'Beste Charles,\r\n\r\nWelkom bij Eigenwijs Kinderdagverblijf.\r\nWij hopen dat wij u goed van dienst kunnen zijn.\r\n\r\nGroeten,\r\nAdministrator', '2014-04-02', 0, 1),
(2, 1, 3, 'Welkom', 'Beste Kenneth,\r\n\r\nWelkom bij Eigenwijs Kinderdagverblijf.\r\nWij hopen dat wij u goed van dienst kunnen zijn.\r\n\r\nGroeten,\r\nAdministrator', '2014-04-02', 0, 1);
-- --------------------------------------------------------
--
-- Table structure for table `email`
--
CREATE TABLE IF NOT EXISTS `email` (
`id` int(11) NOT NULL,
`email` text NOT NULL,
`email_nieuw` text NOT NULL,
`code` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `email`
--
INSERT INTO `email` (`id`, `email`, `email_nieuw`, `code`) VALUES
(1, 'mail@eigenwijs.serghost.com', '', ''),
(2, 'mail@eigenwijs.serghost.com', '', ''),
(3, 'kennyboy@live.nl', '', ''),
(4, 'charlesde5de@hotmail.com', '', '');
-- --------------------------------------------------------
--
-- Table structure for table `facturen`
--
CREATE TABLE IF NOT EXISTS `facturen` (
`factuur_id` int(11) NOT NULL AUTO_INCREMENT,
`ouder_id` int(11) NOT NULL,
`bestand` text NOT NULL,
`datum` date NOT NULL,
`gelezen` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`factuur_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;
--
-- Dumping data for table `facturen`
--
INSERT INTO `facturen` (`factuur_id`, `ouder_id`, `bestand`, `datum`, `gelezen`) VALUES
(1, 4, '20140402_Beus4_factuur82647.pdf', '2014-04-02', 0),
(2, 3, '20140402_Ewijk3_factuur71559.pdf', '2014-04-02', 0);
-- --------------------------------------------------------
--
-- Table structure for table `foto`
--
CREATE TABLE IF NOT EXISTS `foto` (
`foto_id` int(11) NOT NULL AUTO_INCREMENT,
`kind_id` text NOT NULL,
`bestand` text NOT NULL,
`datum` date NOT NULL,
`bijschrift` text NOT NULL,
PRIMARY KEY (`foto_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=6 ;
--
-- Dumping data for table `foto`
--
INSERT INTO `foto` (`foto_id`, `kind_id`, `bestand`, `datum`, `bijschrift`) VALUES
(1, '2,', 'nFhG4Elhv67J0m5ue95g.jpg', '2014-04-02', 'Lekker aan het spelen met de auto''s!'),
(2, '1,2,3,', 'KgDvH15RLPkAUFUTHcij.jpg', '2014-04-02', 'Gezellig rond de tafel!'),
(3, '1,', 'HaNn37WucOgbmDHeT2DG.jpg', '2014-04-02', 'Spelen met de blokken'),
(4, '1,', 'acG9LUDBaaO12g5FJ9sa.jpg', '2014-04-02', 'Frankie speelt met de duplo, is hij niet schattig, in tegenstelling tot zijn vader'),
(5, '3,', 'ASkIDfuVop2C28GsDaMQ.jpg', '2014-04-02', 'Gezellig met z''n tweetjes aan het spelen!');
-- --------------------------------------------------------
--
-- Table structure for table `kinderen`
--
CREATE TABLE IF NOT EXISTS `kinderen` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`ouder_id` int(11) NOT NULL,
`voornaam` text NOT NULL,
`tussenvoegsel` text NOT NULL,
`achternaam` text NOT NULL,
`roepnaam` text NOT NULL,
`geslacht` text NOT NULL,
`geboortedatum` date NOT NULL,
`kind_foto` text NOT NULL,
`dov` int(1) NOT NULL DEFAULT '0',
`tso` int(1) NOT NULL DEFAULT '0',
`nso` int(1) NOT NULL DEFAULT '0',
`actief` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ;
--
-- Dumping data for table `kinderen`
--
INSERT INTO `kinderen` (`id`, `ouder_id`, `voornaam`, `tussenvoegsel`, `achternaam`, `roepnaam`, `geslacht`, `geboortedatum`, `kind_foto`, `dov`, `tso`, `nso`, `actief`) VALUES
(1, 4, 'Frank', 'de', 'Beus', 'Frankie', 'M', '2009-12-06', 'Frank_Beus_38854.jpg', 0, 1, 0, 1),
(2, 3, 'Pieter', 'van', 'Ewijk', 'Pietertje', 'M', '2007-05-14', 'Pieter_Ewijk_93696.jpg', 0, 1, 1, 1),
(3, 3, 'Sara', 'van', 'Ewijk', 'Saartje', 'V', '2010-05-14', 'Sara_Ewijk_03481.png', 1, 0, 0, 1);
-- --------------------------------------------------------
--
-- Table structure for table `login`
--
CREATE TABLE IF NOT EXISTS `login` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`username` text NOT NULL,
`password` text NOT NULL,
`session_id` text NOT NULL,
`ip` text NOT NULL,
`last_login` datetime NOT NULL,
`type` tinyint(1) NOT NULL,
`forgot` tinyint(1) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ;
--
-- Dumping data for table `login`
--
INSERT INTO `login` (`id`, `username`, `password`, `session_id`, `ip`, `last_login`, `type`, `forgot`) VALUES
(1, 'admin', '$2y$10$77NixUxMpgyAjyN7AhHYV.PSu2e3q64HywmchUjbNNKkdL3jFP9EO', '', '46.129.41.43', '2014-04-02 20:49:19', 1, 0),
(2, 'werk', '$2y$10$36egkkfF5W7mNeTpfrPdfehICWxgsMNRH5nDOJfjpywMCZW6MgSLC', '', '46.129.41.43', '2014-04-02 20:12:16', 1, 0),
(3, 'ouder1', '$2y$10$gdX7i8Ad3m2GIuv8RW5Q5eRYEoDtHYejpGiKpNHqb52yqZgLYws6u', '', '46.129.41.43', '2014-04-02 20:48:52', 0, 0),
(4, 'ouder2', '$2y$10$VkxBwfwHzhsVI6yWAKO6TOzn03FwGQQ2eDHiNM0ByiKaXIlCyE7/a', '', '46.129.41.43', '2014-04-02 20:24:54', 0, 0);
-- --------------------------------------------------------
--
-- Table structure for table `nieuws`
--
CREATE TABLE IF NOT EXISTS `nieuws` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`titel` text NOT NULL,
`inhoud` text NOT NULL,
`datum` date NOT NULL,
`schrijver` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;
--
-- Dumping data for table `nieuws`
--
INSERT INTO `nieuws` (`id`, `titel`, `inhoud`, `datum`, `schrijver`) VALUES
(1, 'Nieuwe Website', 'Welkom op de nieuwe website van Eigenwijs Kinderdagverblijf!', '2014-04-02', 1),
(2, 'Welkom', 'Wij hopen dat u het naar uw zin heeft!', '2014-04-02', 1);
-- --------------------------------------------------------
--
-- Table structure for table `ouders`
--
CREATE TABLE IF NOT EXISTS `ouders` (
`id` int(11) NOT NULL,
`voornaam` text NOT NULL,
`tussenvoegsel` text NOT NULL,
`achternaam` text NOT NULL,
`adres` text NOT NULL,
`woonplaats` text NOT NULL,
`telefoonnummer` text NOT NULL,
`rekeningnummer` text NOT NULL,
`geverifieerd` tinyint(1) NOT NULL DEFAULT '0',
`actief` tinyint(1) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `ouders`
--
INSERT INTO `ouders` (`id`, `voornaam`, `tussenvoegsel`, `achternaam`, `adres`, `woonplaats`, `telefoonnummer`, `rekeningnummer`, `geverifieerd`, `actief`) VALUES
(3, 'Kenneth', 'van', 'Ewijk', 'Molenwiek 1', 'Vessem', '0627430627', '123456789', 1, 1),
(4, 'Charles', 'de', 'Beus', 'Straat 6', 'Beers', '0612456900', '123456789', 1, 1);
-- --------------------------------------------------------
--
-- Table structure for table `verslagen`
--
CREATE TABLE IF NOT EXISTS `verslagen` (
`verslag_id` int(11) NOT NULL AUTO_INCREMENT,
`kind_id` int(11) NOT NULL,
`werk_id` int(11) NOT NULL,
`datum` date NOT NULL,
`inhoud` text NOT NULL,
PRIMARY KEY (`verslag_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ;
--
-- Dumping data for table `verslagen`
--
INSERT INTO `verslagen` (`verslag_id`, `kind_id`, `werk_id`, `datum`, `inhoud`) VALUES
(1, 1, 1, '2014-04-02', 'Vandaag wilde Frank alweer zijn eten niet op eten.\r\nHier moet echt iets aan gedaan worden!'),
(2, 2, 1, '2014-04-02', 'Pietertje was boos en wilde niet meespelen met met de rest \r\nvan de groep. Hij wilde niet vertellen waarom.'),
(3, 3, 1, '2014-04-02', 'Saartje probeerde vandaag alweer de vingerverf op te eten. Ze \r\nzat helemaal onder! Iemand moet haar echt eens uitleggen dat \r\nje vingerverf niet bedoeld is om op te eten.');
-- --------------------------------------------------------
--
-- Table structure for table `werknemers`
--
CREATE TABLE IF NOT EXISTS `werknemers` (
`id` int(11) NOT NULL,
`voornaam` text NOT NULL,
`tussenvoegsel` text NOT NULL,
`achternaam` text NOT NULL,
`permissions` int(11) NOT NULL,
`geverifieerd` tinyint(1) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `werknemers`
--
INSERT INTO `werknemers` (`id`, `voornaam`, `tussenvoegsel`, `achternaam`, `permissions`, `geverifieerd`) VALUES
(1, 'Administrator', '', ' ', 2, 1),
(2, 'Werk', '', 'Nemer', 1, 1);
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
+20
View File
@@ -0,0 +1,20 @@
ErrorDocument 401 /error.shtml
ErrorDocument 402 /error.shtml
ErrorDocument 403 /error.shtml
ErrorDocument 404 /error.shtml
ErrorDocument 405 /error.shtml
ErrorDocument 406 /error.shtml
ErrorDocument 407 /error.shtml
ErrorDocument 408 /error.shtml
ErrorDocument 409 /error.shtml
ErrorDocument 410 /error.shtml
ErrorDocument 411 /error.shtml
ErrorDocument 412 /error.shtml
ErrorDocument 413 /error.shtml
ErrorDocument 414 /error.shtml
ErrorDocument 415 /error.shtml
ErrorDocument 501 /error.shtml
ErrorDocument 502 /error.shtml
ErrorDocument 503 /error.shtml
ErrorDocument 504 /error.shtml
ErrorDocument 505 /error.shtml
+84
View File
@@ -0,0 +1,84 @@
<?php
require('inc_header.php');
?>
<!-- Begin van de main content -->
<div id='container'>
<div id='main'>
<div id='text' class='groen'>
<?php if(isset($_GET['succes'])){ ?>
Er is een mail verstuurd naar het door u opgegeven email adres. Het kan zijn dat de mail in je junk/spam folder terecht is gekomen.
Als u uw aanmelding bevestigd heeft kunt u inloggen en een kind aanmelden.
<br><br>
Mocht de link in de mail niet werken, kunt u de meegestuurde code hieronder invullen.
<form action="php/verify.php" method='get'>
<input type="text" name='code' placeholder='Code'>
<input type='submit' value='Bevestig'>
</form>
<?php } else { ?>
<form method='post' action='php/add_user.php'>
<h3 class='white'>Inlog Gegevens</h3>
<table>
<tr>
<td width="150px">Gebruikersnaam</td><td><input name='username' type='text' placeholder='Gebruikersnaam' required></td>
</tr>
<tr>
<td>Email Adres</td><td><input name='email' type='email' placeholder='Email' required></td>
</tr>
<tr>
<td>Wachtwoord</td><td><input name='pass1' type='password' placeholder='Wachtwoord'></td>
</tr>
<tr>
<td>Herhaal Wachtwoord</td><td><input name='pass2' type='password' placeholder='Herhaal Wachtwoord'></td>
</tr>
</table>
<br>
<h3 class='white'>Persoonlijke Gegevens</h3>
<table>
<tr>
<td width="150px">Voornaam</td><td><input name='voornaam' type='text' placeholder='Voornaam' required></td>
</tr>
<tr>
<td>Tussenvoegsel</td><td><input name='tussenvoegsel' type='text' placeholder='Tussenvoegsel'></td>
</tr>
<tr>
<td>Achternaam</td><td><input name='achternaam' type='text' placeholder='Achternaam' required></td>
</tr>
<tr>
<td>Adres</td><td><input name='adres' type='text' placeholder='Adres' required></td>
</tr>
<tr>
<td>Woonplaats</td><td><input name='woonplaats' type='text' placeholder='Woonplaats' required></td>
</tr>
<tr>
<td>Telefoonnummer</td><td><input name='telefoonnummer' type='tel' placeholder='Telefoonnummer' required><br></td>
</tr>
<tr>
<td>Rekeningnummer</td><td><input pattern="[0-9]{9,9}" name='rekeningnummer' type='text' placeholder='Rekeningnummer' required><br></td>
</tr>
</table>
<br>
<h3 class='white'>Aanmelden</h3>
<input type='submit' value='Aanmelden'>
</form>
<?php } ?>
</div>
<?php require('php/news_div.php'); ?>
</div>
</div>
<!-- Einde van de main content -->
<?php
require('inc_footer.php');
?>
+129
View File
@@ -0,0 +1,129 @@
<?php
require('inc_header.php');
if(!$login || $type==1){
header("Location: login.php?msg=U moet inloggen om een kind aan te melden");
}
?>
<!-- Begin van de main content -->
<div id='container'>
<div id='main'>
<div id='text' class='groen'>
<form method='post' action='php/add_kind.php' enctype='multipart/form-data'>
<h3 class='white'>Gegevens</h3>
<table>
<tr>
<td>Voornaam</td><td><input name='voornaam' type='text' placeholder='Voornaam' required autofocus></td>
</tr>
<tr>
<td>Tussenvoegsel</td><td><input name='tussenvoegsel' type='text' placeholder='Tussenvoegsel' value="<?php echo $tussenvoegsel; ?>"></td>
</tr>
<tr>
<td>Achternaam</td><td><input name='achternaam' type='text' placeholder='Achternaam' required value="<?php echo $achternaam; ?>"></td>
</tr>
<tr>
<td>Roepnaam</td><td><input name='roepnaam' type='text' placeholder='Roepnaam' required></td>
</tr>
<tr>
<td>Geslacht</td><td>
<input type="radio" name="geslacht" value="M" id='m' checked><label for='m'>Jongetje</label>
<input type="radio" name="geslacht" value="V" id='v'><label for='v'>Meisje</label>
</td>
</tr>
<tr>
<td>Geboortedatum</td><td><input name='geboortedatum' type='date' required><br></td>
</tr>
</table>
<br>
<h3 class='white'>Type Opvang</h3>
<input type="checkbox" name="dov" value="1" id="dov" onchange="change();" checked><label for='dov'>Dagopvang</label><br>
<input type="checkbox" name="tso" value="1" id="tso" onchange="change();"><label for='tso'>Tussen schoolse opvang</label><br>
<input type="checkbox" name="nso" value="1" id="nso" onchange="change();"><label for='nso'>Na schoolse opvang</label><br>
<script>
var last_dov = true;
var last_tso = false;
var last_nso = false;
var dvo = false;
var tso = false;
var nso = false;
function change(){
dov = $('#dov').prop('checked');
tso = $('#tso').prop('checked');
nso = $('#nso').prop('checked');
//Not previously checked
if(!last_dov && dov){ //false
$('#tso').prop('checked', false);
$('#nso').prop('checked', false);
tso = false;
nso = false;
}
if( (!last_tso || !last_nso) && (tso || nso) ){ //false
$('#dov').prop('checked', false);
dov = false;
}
//Previously checked
if( (last_dov && !dov) ){ //false
$('#tso').prop('checked', true);
$('#nso').prop('checked', true);
tso = true;
nso = true;
}
if( (last_tso || last_nso) && (!tso && !nso) ){ //true
$('#dov').prop('checked', true);
dov = true;
}
last_dov = dov;
last_nso = nso;
last_tso = tso;
}
</script>
<br>
<br>
<h3 class='white'>Foto van uw kind</h3>
<input id='imagefile' name="file" type="file" accept="image/*" onclick='image(1)' onchange='image(2);'><span id='load'></span>
<script>
function image(val){
if(val == 1){
$('#load').html("<img src='images/loading.gif' height='20px'>");
}
if(val == 2){
$('#load').html("<img src='images/success.png' height='20px'>");
}
}
</script>
<br>
<br>
<h3 class='white'>Aanmelden</h3>
<input type='submit' value='Aanmelden'>
</form>
</div>
<?php require('php/news_div.php'); ?>
</div>
</div>
<!-- Einde van de main content -->
<?php
require('inc_footer.php');
?>
+61
View File
@@ -0,0 +1,61 @@
<?php
require('inc_header.php');
if(!$login && $type != 1){
header("Location: login.php?msg=U heeft geen toegang tot deze pagina");
}
?>
<!-- Begin van de main content -->
<div id='container'>
<div id='main'>
<div id='text' class='groen'>
<form method='post' action='php/add_werk.php'>
<h3 class='white'>Inlog Gegevens</h3>
<table>
<tr>
<td width="150px">Gebruikersnaam</td><td><input name='username' type='text' placeholder='Gebruikersnaam' required></td>
</tr>
<tr>
<td>Email Adres</td><td><input name='email' type='email' placeholder='Email' required></td>
</tr>
<tr>
<td>Wachtwoord</td><td>Er wordt automatisch een wachtwoord gegenereerd</td>
</tr>
</table>
<br>
<h3 class='white'>Persoonlijke Gegevens</h3>
<table>
<tr>
<td width="150px">Voornaam</td><td><input name='voornaam' type='text' placeholder='Voornaam' required></td>
</tr>
<tr>
<td>Tussenvoegsel</td><td><input name='tussenvoegsel' type='text' placeholder='Tussenvoegsel'></td>
</tr>
<tr>
<td>Achternaam</td><td><input name='achternaam' type='text' placeholder='Achternaam' required></td>
</tr>
</table>
<br>
<h3 class='white'>Aanmelden</h3>
<input type='submit' value='Toevoegen'>
</form>
</div>
<?php require('php/news_div.php'); ?>
</div>
</div>
<!-- Einde van de main content -->
<?php
require('inc_footer.php');
?>
+319
View File
@@ -0,0 +1,319 @@
<?php
require('inc_header.php');
if(!$login){
header("Location: login.php?msg=U moet inloggen om uw account te bekijken");
}
?>
<!-- Begin van de main content -->
<div id='container'>
<div id='main'>
<header class='h1_banner'><h1>Mijn Gegevens</h1></header>
<table border=0>
<tr>
<th align='left'>
Naam:
</th>
<td>
<?php echo $naam; ?>
</td>
</tr>
<tr>
<th align='left'>
Email:
</th>
<td>
<?php echo $email; ?>
</td>
</tr>
<?php if($type == 0){ ?>
<tr>
<th align='left'>
Adres:
</th>
<td>
<?php echo $adres; ?>
</td>
</tr>
<tr>
<th align='left'>
Telefoonnummer:
</th>
<td>
<?php echo $telefoonnummer; ?>
</td>
</tr>
<tr>
<th align='left'>
Rekeningnummer:
</th>
<td>
<?php echo $rekeningnummer; ?>
</td>
</tr>
<tr>
<th align='left'>
Aantal Kinderen:
</th>
<td>
<?php echo $kinderen; ?>
</td>
</tr>
<?php } ?>
</table>
<br>
<header class='h1_banner'><h1>Beheer Account</h1></header>
<ul class='account'>
<a href='wachtwoord_wijz.php'>
<li title='Wijzig uw huidige wachtwoord'>
<img src='images/nav_edit.png'>
<p class='left'>Wachtwoord wijzigen</p>
<p class='right'></p>
</li>
</a>
<a href='email_wijz.php'>
<li title='Wijzig uw huidige email adres'>
<img src='images/nav_edit.png'>
<p class='left'>Email adres wijzigen</p>
<p class='right'></p>
</li>
</a>
<?php if($type == 0){ ?>
<a href='aanmelden_kind.php'>
<li title='Er zijn momenteel <?php echo $kinderen; ?> kinderen bij ons bekend'>
<img src='images/nav_add.png'>
<p class='left'>Nieuw kind aanmelden</p>
<p class='right'></p>
</li>
</a>
<br>
<a href='fotoalbum.php'>
<li title='Bekijk alle fotos van uw kinderen'>
<img src='images/nav_foto.png'>
<p class='left'>Fotoalbum bekijken</p>
<p class='right'></p>
</li>
</a>
<br>
<a href='mail.php'>
<li title='U heeft <?php echo $berichten; ?> nieuwe berichten'>
<img src='images/nav_msg.png'>
<p class='left'>Berichten</p>
<p class='right'><?php echo $berichten; ?></p>
</li>
</a>
<a href='facturen.php'>
<li title='U heeft <?php echo $facturen; ?> nieuwe facturen'>
<img src='images/nav_doc.png'>
<p class='left'>Facturen</p>
<p class='right'><?php echo $facturen; ?></p>
</li>
</a>
<a href='verslagen.php'>
<li title='U heeft <?php echo $verslagen; ?> nieuwe verslagen'>
<img src='images/nav_doc.png'>
<p class='left'>Verslagen</p>
<p class='right'></p>
</li>
</a>
<?php } elseif($type == 1){ ?>
<br>
<a href='beheer_kind.php'>
<li title='Er zijn in totaal <?php echo $kinderen; ?> kinderen'>
<img src='images/nav_child.png'>
<p class='left'>Kinderen beheren</p>
<p class='right'><?php echo $kinderen; ?></p>
</li>
</a>
<a href='beheer_groep.php'>
<li title='Beheer de opvang groepen'>
<img src='images/nav_user.png'>
<p class='left'>Groepen beheren</p>
<p class='right'></p>
</li>
</a>
<a href='beheer_ouder.php'>
<li title='Er zijn in totaal <?php echo $ouders; ?> ouders'>
<img src='images/nav_user.png'>
<p class='left'>Ouders beheren</p>
<p class='right'><?php echo $ouders; ?></p>
</li>
</a>
<?php if($perms == 2){ ?>
<a href='beheer_werk.php'>
<li title='Er zijn in totaal <?php echo $werknemer; ?> werknemerss'>
<img src='images/nav_user.png'>
<p class='left'>Werknemers beheren</p>
<p class='right'><?php echo $werknemer; ?></p>
</li>
</a>
<?php } ?>
<br>
<a href='fotoalbum.php'>
<li title='Bekijk alle fotos van uw kinderen'>
<img src='images/nav_foto.png'>
<p class='left'>Fotoalbum bekijken</p>
<p class='right'></p>
</li>
</a>
<br>
<a href='mail.php'>
<li title='U heeft <?php echo $berichten; ?> nieuwe berichten'>
<img src='images/nav_msg.png'>
<p class='left'>Berichten</p>
<p class='right'><?php echo $berichten; ?></p>
</li>
</a>
<a href='facturen.php'>
<li title='U heeft <?php echo $facturen; ?> nieuwe facturen'>
<img src='images/nav_doc.png'>
<p class='left'>Facturen</p>
<p class='right'></p>
</li>
</a>
<a href='verslagen.php'>
<li title='U heeft <?php echo $verslagen; ?> nieuwe verslagen'>
<img src='images/nav_doc.png'>
<p class='left'>Verslagen</p>
<p class='right'></p>
</li>
</a>
<br>
<a href='nieuw_verslag.php'>
<li title='Maak een verslag aan'>
<img src='images/nav_add.png'>
<p class='left'>Maak een nieuw verslag aan</p>
<p class='right'></p>
</li>
</a>
<a href='nieuw_factuur.php'>
<li title='Maak een factuur aan'>
<img src='images/nav_add.png'>
<p class='left'>Maak een nieuw factuur aan</p>
<p class='right'></p>
</li>
</a>
<a href='nieuw_foto.php'>
<li title='Voeg een nieuwe foto toe aan het fotoalbum'>
<img src='images/nav_add.png'>
<p class='left'>Voeg een foto toe</p>
<p class='right'></p>
</li>
</a>
<a href='nieuwsnew.php'>
<li title='Voeg een nieuwsbericht toe'>
<img src='images/nav_add.png'>
<p class='left'>Voeg een nieuwsbericht toe</p>
<p class='right'></p>
</li>
</a>
<?php if($perms == 2){ ?>
<a href='aanmelden_werk.php'>
<li title='Voeg een werknemer toe'>
<img src='images/nav_add.png'>
<p class='left'>Voeg een werknemer toe</p>
<p class='right'></p>
</li>
</a>
<?php } } ?>
</ul>
<br>
<?php if($type == 0){ ?>
<header class='h1_banner'><h1>Mijn Kinderen</h1></header>
<?php $last_rand = 0; $last_last_rand = 0; foreach($kind as $key => $value){
$rand = rand(1, 4);
while($rand == $last_rand){
$rand = rand(1,4);
}
if($value['actief']==0){
$rand = 5;
}
?>
<a href= 'kindpagina.php?kind_id=<?php echo $value['id']; ?>' >
<div id='kind_b' class="nr<?php echo $rand; ?>">
<img src="images/pfk/<?php echo $value['foto']; ?>" width="110" height="115">
<div id='cont'>
<h1><?php echo $value['naam']; ?></h1>
<p>
Roepnaam: <?php echo $value['roepnaam']; ?>
&emsp; &emsp; &emsp;
Leeftijd: <?php echo $value['leeftijd']; ?>
&emsp; &emsp; &emsp;
Opvang: <?php echo $value['opvang']; ?>
</p>
</div>
</div>
</a>
<?php $last_rand = $rand; } } ?>
</div>
</div>
<!-- Einde van de main content -->
<?php
require('inc_footer.php');
?>
+212
View File
@@ -0,0 +1,212 @@
<?php
require('inc_header.php');
if(!$login && $type != 1){
header("Location: login.php?msg=U heeft geen toegang tot deze pagina");
}
$query = "SELECT * FROM kinderen";
$result_temp = mysqli_query($connection, $query);
$dov1 = "";
$dov2 = "";
$dov3 = "";
$dov4 = "";
$tso1 = "";
$tso2 = "";
$tso3 = "";
$nso1 = "";
$nso2 = "";
$nso3 = "";
while($result = mysqli_fetch_assoc($result_temp)){
//DOV
if($result['dov']==1){
$dov1 .= $result['roepnaam'] . ", ";
}
if($result['dov']==2){
$dov2 .= $result['roepnaam'] . ", ";
}
if($result['dov']==3){
$dov3 .= $result['roepnaam'] . ", ";
}
if($result['dov']==4){
$dov4 .= $result['roepnaam'] . ", ";
}
//TSO
if($result['tso']==1){
$tso1 .= $result['roepnaam'] . ", ";
}
if($result['tso']==2){
$tso2 .= $result['roepnaam'] . ", ";
}
if($result['tso']==3){
$tso3 .= $result['roepnaam'] . ", ";
}
//NSO
if($result['nso']==1){
$nso1 .= $result['roepnaam'] . ", ";
}
if($result['nso']==2){
$nso2 .= $result['roepnaam'] . ", ";
}
if($result['nso']==3){
$nso3 .= $result['roepnaam'] . ", ";
}
}
$dov1 = substr($dov1, 0, -2);
$dov2 = substr($dov2, 0, -2);
$dov3 = substr($dov3, 0, -2);
$dov4 = substr($dov4, 0, -2);
$tso1 = substr($tso1, 0, -2);
$tso2 = substr($tso2, 0, -2);
$tso3 = substr($tso3, 0, -2);
$nso1 = substr($nso1, 0, -2);
$nso2 = substr($nso2, 0, -2);
$nso3 = substr($nso3, 0, -2);
?>
<!-- Begin van de main content -->
<div id='container'>
<div id='main'>
<header class='h1_banner'><h1>Beheer Groepen Dagopvang</h1></header>
<a href= 'groeppagina.php?type=dov&nr=1' >
<div id='ouder_b' class="nr1">
<div id='cont'>
<h1>Dagopvang: Groep 1</h1>
<p>Kinderen: <?php echo $dov1; ?></p>
</div>
</div>
</a>
<a href= 'groeppagina.php?type=dov&nr=2' >
<div id='ouder_b' class="nr1">
<div id='cont'>
<h1>Dagopvang: Groep 2</h1>
<p>Kinderen: <?php echo $dov2; ?></p>
</div>
</div>
</a>
<a href= 'groeppagina.php?type=dov&nr=3' >
<div id='ouder_b' class="nr1">
<div id='cont'>
<h1>Dagopvang: Groep 3</h1>
<p>Kinderen: <?php echo $dov3; ?></p>
</div>
</div>
</a>
<a href= 'groeppagina.php?type=dov&nr=4' >
<div id='ouder_b' class="nr1">
<div id='cont'>
<h1>Dagopvang: Groep 4</h1>
<p>Kinderen: <?php echo $dov4; ?></p>
</div>
</div>
</a>
<br>
<header class='h1_banner'><h1>Beheer Groepen Tussentijdse opvang</h1></header>
<a href= 'groeppagina.php?type=tso&nr=1' >
<div id='ouder_b' class="nr4">
<div id='cont'>
<h1>Tussentijdse opvang: Groep 1</h1>
<p>Kinderen: <?php echo $tso1; ?></p>
</div>
</div>
</a>
<a href= 'groeppagina.php?type=tso&nr=2' >
<div id='ouder_b' class="nr4">
<div id='cont'>
<h1>Tussentijdse opvang: Groep 2</h1>
<p>Kinderen: <?php echo $tso2; ?></p>
</div>
</div>
</a>
<a href= 'groeppagina.php?type=tso&nr=3' >
<div id='ouder_b' class="nr4">
<div id='cont'>
<h1>Tussentijdse opvang: Groep 3</h1>
<p>Kinderen: <?php echo $tso3; ?></p>
</div>
</div>
</a>
<br>
<header class='h1_banner'><h1>Beheer Groepen Naschoolse opvang</h1></header>
<a href= 'groeppagina.php?type=nso&nr=1' >
<div id='ouder_b' class="nr3">
<div id='cont'>
<h1>Naschoolse opvang: Groep 1</h1>
<p>Kinderen: <?php echo $nso1; ?></p>
</div>
</div>
</a>
<a href= 'groeppagina.php?type=nso&nr=2' >
<div id='ouder_b' class="nr3">
<div id='cont'>
<h1>Naschoolse opvang: Groep 2</h1>
<p>Kinderen: <?php echo $nso2; ?></p>
</div>
</div>
</a>
<a href= 'groeppagina.php?type=nso&nr=3' >
<div id='ouder_b' class="nr3">
<div id='cont'>
<h1>Naschoolse opvang: Groep 3</h1>
<p>Kinderen: <?php echo $nso3; ?></p>
</div>
</div>
</a>
</div>
</div>
<!-- Einde van de main content -->
<?php
require('inc_footer.php');
?>
+88
View File
@@ -0,0 +1,88 @@
<?php
require('inc_header.php');
if(!$login && $type != 1){
header("Location: login.php?msg=U heeft geen toegang tot deze pagina");
}
$query = "SELECT * FROM kinderen ORDER BY actief DESC, ouder_id, voornaam";
$result_temp = mysqli_query($connection, $query);
?>
<!-- Begin van de main content -->
<div id='container'>
<div id='main'>
<header class='h1_banner'><h1>Beheer Kinderen</h1></header>
<?php $last_rand = 0; $last_last_rand = 0; while($result = mysqli_fetch_assoc($result_temp)){
$rand = rand(1, 4);
while($rand == $last_rand){
$rand = rand(1,4);
}
if($result['actief']==0){
$rand='5';
}
$opvang = '';
$dov = 0; $tso = 0; $nso = 0;
if($result['dov']>=1){
$opvang .= 'DOV: ' . $result['dov'] . ', ';
$dov = 1;
}
if($result['tso']>=1){
$opvang .= 'TSO: ' . $result['tso'] . ', ';
$tso = 1;
}
if($result['nso']>=1){
$opvang .= 'NSO: ' . $result['nso'] . ', ';
$nso = 1;
}
$opvang = substr($opvang, 0, -2);
if($result['dov']==0 && $result['tso']==0 && $result['nso']==0){
$opvang = '-';
}
$ouder_id = $result['ouder_id'];
$query2 = "SELECT voornaam, tussenvoegsel, achternaam FROM ouders WHERE id='$ouder_id'";
$result_temp2 = mysqli_query($connection, $query2);
$result2 = mysqli_fetch_assoc($result_temp2);
?>
<a href= 'kindpagina.php?kind_id=<?php echo $result['id']; ?>' >
<div id='kind_b' class="nr<?php echo $rand ?>">
<img src="images/pfk/<?php echo $result['kind_foto']; ?>" width="110" height="115">
<div id='cont'>
<h1><?php echo $result['voornaam'] . " " . $result['tussenvoegsel'] . " " . $result['achternaam']; ?></h1>
<p>
Roepnaam: <?php echo $result['roepnaam']; ?>
&emsp; &emsp; &emsp;
Leeftijd: <?php $leeftijd = date_diff(date_create($result['geboortedatum']), date_create('today'))->y; echo $leeftijd; ?>
&emsp; &emsp; &emsp;
Opvang: <?php echo $opvang; ?>
<br>
Ouder: <?php echo $result2['voornaam'] . " " . $result2['tussenvoegsel'] . " " . $result2['achternaam']; ?>
</p>
</div>
</div>
</a>
<?php $last_rand = $rand; } ?>
</div>
</div>
<!-- Einde van de main content -->
<?php
require('inc_footer.php');
?>
+60
View File
@@ -0,0 +1,60 @@
<?php
require('inc_header.php');
if(!$login && $type != 1){
header("Location: login.php?msg=U heeft geen toegang tot deze pagina");
}
$query = "SELECT * FROM ouders ORDER BY actief DESC, achternaam";
$result_temp = mysqli_query($connection, $query);
?>
<!-- Begin van de main content -->
<div id='container'>
<div id='main'>
<header class='h1_banner'><h1>Beheer Ouders</h1></header>
<?php $last_rand = 0; $last_last_rand = 0; while($result = mysqli_fetch_assoc($result_temp)){
$rand = rand(1, 4);
while($rand == $last_rand){
$rand = rand(1,4);
}
if($result['actief']==0){
$rand='5';
}
$ouder_id = $result['id'];
$query2 = "SELECT roepnaam FROM kinderen WHERE ouder_id='$ouder_id'";
$result_temp2 = mysqli_query($connection, $query2);
$aantal = mysqli_num_rows($result_temp2);
$kinderen_n = '';
while($result2 = mysqli_fetch_assoc($result_temp2)){ $kinderen_n .= $result2['roepnaam'] . ", "; }
$kinderen_n = substr( $kinderen_n, 0, -2);
?>
<a href= 'ouderpagina.php?ouder_id=<?php echo $result['id']; ?>' >
<div id='ouder_b' class="nr<?php echo $rand; ?>">
<div id='cont'>
<h1><?php echo $result['voornaam'] . " " . $result['tussenvoegsel'] . " " . $result['achternaam']; ?></h1>
<p>
<?php echo $aantal; ?> Kinderen: <?php echo $kinderen_n; ?>
</p>
</div>
</div>
</a>
<?php $last_rand = $rand; } ?>
</div>
</div>
<!-- Einde van de main content -->
<?php
require('inc_footer.php');
?>
+43
View File
@@ -0,0 +1,43 @@
<?php
require('inc_header.php');
if(!$login && $type != 1){
header("Location: login.php?msg=U heeft geen toegang tot deze pagina");
}
$query = "SELECT * FROM werknemers ORDER BY achternaam";
$result_temp = mysqli_query($connection, $query);
?>
<!-- Begin van de main content -->
<div id='container'>
<div id='main'>
<header class='h1_banner'><h1>Beheer Werknemers</h1></header>
<?php $last_rand = 0; $last_last_rand = 0; while($result = mysqli_fetch_assoc($result_temp)){
$rand = rand(1, 4);
while($rand == $last_rand){
$rand = rand(1,4);
}
?>
<div id='ouder_b' class="nr<?php echo $rand; ?>">
<div id='cont'>
<h1><?php echo $result['voornaam'] . " " . $result['tussenvoegsel'] . " " . $result['achternaam']; ?></h1>
</div>
</div>
<?php $last_rand = $rand; } ?>
</div>
</div>
<!-- Einde van de main content -->
<?php
require('inc_footer.php');
?>
+53
View File
@@ -0,0 +1,53 @@
<?php
require('inc_header.php');
if($login){
header("Location: mail.php?msg=Het is makkelijker om direct een bericht naar een medewerker te sturen");
}
?>
<!-- Begin van de main content -->
<div id='container'>
<div id='main'>
<div id='text' class='groen'>
<h1>Contact</h1>
U kunt altijd een een mailtje sturen naar <b>contact@eigenwijs.serghost.com</b> of bellen naar <b>+31 1234567</b>.<br><br>
Als u vragen heeft over ons kinderdagverblijf, of heeft u hulp nodig met uw registratie, helpen wij u graag.
Verstuur hier een bericht, en laat daarin gelieve uw <b>emailadres</b> of <b>telefoonnummer</b> achter. wij zullen u dan z.s.m. contacteren.
<table border='0px'>
<tr>
<td width='200px'></td>
</tr>
<tr>
<td colspan='7'>
<form method='post' action='php/contact.php' id="new_ber">
<textarea form="new_ber" cols="60" rows="15" name='bericht'
wrap="hard" > </textarea>
</td> </tr>
</table>
<input type='submit' value='Verzenden'> </form>
</div>
<?php require('php/news_div.php'); ?>
</div>
</div>
<!-- Einde van de main content -->
<?php
require('inc_footer.php');
?>
View File
+4
View File
@@ -0,0 +1,4 @@
body {
background-color: #FFFFFF;
background-image: none;
}
+1035
View File
File diff suppressed because it is too large Load Diff
+53
View File
@@ -0,0 +1,53 @@
<?php
require('inc_header.php');
if(!$login){
header("Location: login.php?msg=U moet inloggen om uw email adres te wijzigen");
}
?>
<!-- Begin van de main content -->
<div id='container'>
<div id='main'>
<div id='text' class='groen'>
<?php if(isset($_GET['succes'])){ ?>
Er is een mail verstuurd naar het door u opgegeven email adres. Het kan zijn dat de mail in je junk/spam folder terecht is gekomen.
Als u uw aanmelding bevestigd zullen alle mailtjes voortaan naar uw nieuwe email adres gaan.
<br><br>
Mocht de link in de mail niet werken, kunt u de meegestuurde code hieronder invullen.
<form action="php/verify.php" method='get'>
<input type="text" name='code' placeholder='Code'>
<input type='submit' value='Bevestig'>
</form>
<?php } else { ?>
<form method='post' action='php/wijzig_email.php'>
<h3 class='white'>Nieuw Email adres</h3>
<table>
<tr>
<td width='150px'>Email Adres</td><td><input name='email1' type='email' placeholder='Email Adres' required></td>
</tr>
<tr>
<td width='150px'>Herhaal Email Adres</td><td><input name='email2' type='email' placeholder='Herhaal Email Adres' required></td>
</tr>
</table>
<br>
<h3 class='white'>Wijzigen</h3>
<input type='submit' value='Wijzigen'>
</form>
<?php } ?>
</div>
<?php require('php/news_div.php'); ?>
</div>
</div>
<!-- Einde van de main content -->
<?php
require('inc_footer.php');
?>
+117
View File
@@ -0,0 +1,117 @@
<html>
<head>
<title><!--#echo var="REDIRECT_STATUS" --> - Eigenwijs Kinderdagverblijf</title>
<link href="/css/style.css?v=1" rel="stylesheet" type="text/css" />
<link rel="icon" type="image/png" href="/images/favicon.png">
</head>
<body>
<div id='holder'>
<div id='wrapper'>
<!-- Begin van de header -->
<div id='container'>
<div id='header'>
<a href='/index.php'>
<div id='left'>
</div>
</a>
<div id='right'>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="480" height="125">
<param name="movie" value="/images/logo-element.swf" />
<param name="quality" value="high" />
<param name="wmode" value="transparent"/>
<embed src="/images/logo-element.swf" quality="high" type="application/x-shockwave-flash" width="480" height="125" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
</div>
</div>
<!-- Einde van de header -->
</div>
<div id='clear'>&nbsp;</div>
<!-- Begin van de banner -->
<div id='container'>
<div id='banner'>
</div>
</div>
<!-- Einde van de banner -->
<div id='clear'>&nbsp;</div>
<div id='container'>
<div id='main'>
<h1>Oops, er is een fout opgetreden!</h1><br><br>
<h2>De volgende informatie is misschien van belang: </h2><br><br>
<table cellspacing=10>
<tr>
<td>
Error Code:
</td>
<td>
<!--#echo var="REDIRECT_STATUS" -->
</td>
</tr>
<tr>
<td>
Huidige Pagina:
</td>
<td>
<!--#echo var="REQUEST_URI" -->
</td>
</tr>
<tr>
<td>
Redirect Pagina:
</td>
<td>
<!--#echo var="HTTP_REFERER" -->
</td>
</tr>
<tr>
<td>
Browser:
</td>
<td>
<!--#echo var="HTTP_USER_AGENT" -->
</td>
</tr>
<tr>
<td>
Server:
</td>
<td>
<!--#echo var="HTTP_HOST" -->
</td>
</tr>
<tr>
<td>
IP:
</td>
<td>
<!--#echo var="REMOTE_ADDR" -->
</td>
</tr>
</table>
</div>
</div>
</div>
</div>
</body>
</html>
<!--
-->
+72
View File
@@ -0,0 +1,72 @@
<?php
require('inc_header.php');
if(!$login){
header("Location: login.php?msg=U moet inloggen om uw facturen te bekijken");
}
if($type==0){
$query = "SELECT * FROM facturen WHERE ouder_id='$id' ORDER BY factuur_id DESC";
}
elseif($type==1){
$query = "SELECT * FROM facturen ORDER BY factuur_id DESC LIMIT 0,40";
}
$result_temp = mysqli_query($connection, $query);
$datum = false;
$maand = date("m", strtotime("now"));
?>
<!-- Begin van de main content -->
<div id='container'>
<div id='main'>
<header class='h1_banner'><h1>Facturen van deze maand</h1></header>
<ul class='account'>
<?php while($result = mysqli_fetch_assoc($result_temp)){
$maand2 = date("m", strtotime($result['datum']));
$ouder_id = $result['ouder_id'];
$query = "SELECT voornaam, tussenvoegsel, achternaam FROM ouders WHERE id='$ouder_id'";
$result_temp_ouder = mysqli_query($connection, $query);
$result_ouder = mysqli_fetch_assoc($result_temp_ouder);
if($maand != $maand2 && !$datum){
$datum = true;
?>
<br>
</ul>
<header class='h1_banner'><h1>Oude Facturen</h1></header>
<ul class='account'>
<?php
} ?>
<a href='php/download_factuur.php?id=<?php echo $result['factuur_id']; ?>' target='_blank' onclick="location.reload();">
<li title='Factuur voor <?php echo $result['datum']; ?>'>
<img src='images/nav_doc.png'>
<p class='left'>Factuur: <?php echo $result['datum']; if($type==1){ echo " voor " . $result_ouder['voornaam'] . " " . $result_ouder['tussenvoegsel'] . " " . $result_ouder['achternaam']; } ?></p>
<p class='right'><?php if($result['gelezen']==1){ ?> <img src='images/success.png' title='Gelezen' style='float: right;'> <?php } ?></p>
</li>
</a>
<?php } ?>
</ul>
</div>
</div>
<!-- Einde van de main content -->
<?php
require('inc_footer.php');
?>
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
View File
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+61
View File
@@ -0,0 +1,61 @@
<?php
require("inc_header.php");
$kind_id=$_GET['kind_id'];
if($type==0){
$foo = false;
foreach($kind as $key => $value){
if($value['id'] == $kind_id){
$foo = true;
}
}
if(!$foo){
header("Location: account.php?msg=U kunt alleen uw eigen kind wijzigen");
}
}
?>
<!-- Begin van de main content -->
<div id='container'>
<div id='main'>
<div id='text' class='groen'>
<form method='post' action='php/wijzig_foto.php' enctype='multipart/form-data'>
<h3 class='white'>Foto wijzigen</h3>
<input id='imagefile' name="file" type="file" accept="image/*" onclick='image(1)' onchange='image(2);'><span id='load'></span>
<script>
function image(val){
if(val == 1){
$('#load').html("<img src='images/loading.gif' height='20px'>");
}
if(val == 2){
$('#load').html("<img src='images/success.png' height='20px'>");
}
}
</script>
<input type='hidden' value='<?php echo $kind_id; ?>' name='kind_id'>
<br><br>
<h3 class='white'>Wijzigen</h3>
<input type='submit' value='Wijzigen'>
</form>
</div>
<?php require('php/news_div.php'); ?>
</div>
</div>
<!-- Einde van de main content -->
<?php
require('inc_footer.php');
?>
+132
View File
@@ -0,0 +1,132 @@
<?php
require('inc_header.php');
if(!$login){
header("Location: login.php?msg=U moet inloggen om het fotoalbum te bekijken");
}
?>
<!-- Begin van de main content -->
<div id='container'>
<div id='main'>
<?php
if($type==0 && !isset($_GET['kind_id'])){
foreach($kind as $key => $value){
$kind_id = $value['id'];
$QUERY_FOTO_OPHAAL = "SELECT * FROM foto WHERE kind_id LIKE '%$kind_id,%' ORDER BY foto_id DESC";
$QUERY_FOTO_RESULT= mysqli_query($connection, $QUERY_FOTO_OPHAAL);
if(mysqli_num_rows($QUERY_FOTO_RESULT)>=1){ ?>
<br>
<header class='h1_banner'><h1>Foto's van <?php echo $value['roepnaam']; ?></h1></header>
<div id='fotoalbum'>
<div class="flexslider">
<ul class="slides">
<?php
while ($row = mysqli_fetch_assoc( $QUERY_FOTO_RESULT)) { ?>
<li>
<img src="images/fotoalbum/<?php echo $row['bestand']; ?>" />
<p><?php echo $row['bijschrift']; ?></p>
</li>
<?php } ?>
</ul>
</div>
</div>
<?php }
}
}
elseif(isset($_GET['kind_id'])) {
$kind_id = $_GET['kind_id'];
$query = "SELECT * FROM kinderen WHERE id='$kind_id'";
$result_temp = mysqli_query($connection, $query);
$result_kind = mysqli_fetch_assoc($result_temp);
$QUERY_FOTO_OPHAAL = "SELECT * FROM foto WHERE kind_id LIKE '%$kind_id,%' ORDER BY foto_id DESC";
$QUERY_FOTO_RESULT= mysqli_query($connection, $QUERY_FOTO_OPHAAL);
if(mysqli_num_rows($QUERY_FOTO_RESULT)>=1){ ?>
<br>
<header class='h1_banner'><h1>Foto's van <?php echo $result_kind['roepnaam']; ?></h1></header>
<div id='fotoalbum'>
<div class="flexslider">
<ul class="slides">
<?php
while ($row = mysqli_fetch_assoc( $QUERY_FOTO_RESULT)) { ?>
<li>
<img src="images/fotoalbum/<?php echo $row['bestand']; ?>" />
<p><?php echo $row['bijschrift']; ?></p>
</li>
<?php } ?>
</ul>
</div>
</div>
<?php }
}
else{
$query = "SELECT id FROM kinderen";
$result_temp = mysqli_query($connection, $query);
while($result = mysqli_fetch_assoc($result_temp)){
$kind_id = $result['id'];
$query = "SELECT * FROM kinderen WHERE id='$kind_id'";
$result_temp_kind = mysqli_query($connection, $query);
$result_kind = mysqli_fetch_assoc($result_temp_kind);
$QUERY_FOTO_OPHAAL = "SELECT * FROM foto WHERE kind_id LIKE '%$kind_id,%' ORDER BY foto_id DESC";
$QUERY_FOTO_RESULT= mysqli_query($connection, $QUERY_FOTO_OPHAAL);
if(mysqli_num_rows($QUERY_FOTO_RESULT)>=1){ ?>
<br>
<header class='h1_banner'><h1>Foto's van <?php echo $result_kind['roepnaam']; ?></h1></header>
<div id='fotoalbum'>
<div class="flexslider">
<ul class="slides">
<?php
while ($row = mysqli_fetch_assoc( $QUERY_FOTO_RESULT)) { ?>
<li>
<img src="images/fotoalbum/<?php echo $row['bestand']; ?>" />
<p><?php echo $row['bijschrift']; ?></p>
</li>
<?php } ?>
</ul>
</div>
</div>
<?php }
}
}
?>
</div>
</div>
<!-- Einde van de main content -->
<?php
require('inc_footer.php');
?>
+90
View File
@@ -0,0 +1,90 @@
<?php
require("inc_header.php");
if(!$login || $type!=1){
header("Location: index.php?msg=U moet inloggen om deze pagina te bekijken");
}
$kind_id=$_GET['kind_id'];
$query = "SELECT tso, dov, nso FROM kinderen WHERE id='$kind_id'";
$result_temp = mysqli_query($connection, $query);
$result = mysqli_fetch_assoc($result_temp);
?>
<!-- Begin van de main content -->
<div id='container'>
<div id='main'>
<div id='text' class='groen'>
<form method='post' action='php/wijzig_groep.php'>
<h3 class='white'>Groep Wijzigen</h3>
<table>
<?php if($result['dov']>=1){ ?>
<tr>
<td>
Dagopvang:
</td>
<td>
<select name='dov'>
<option value='1' <?php if($result['dov']==1){ echo "selected"; } ?>>Groep 1</option>
<option value='2' <?php if($result['dov']==2){ echo "selected"; } ?>>Groep 2</option>
<option value='3' <?php if($result['dov']==3){ echo "selected"; } ?>>Groep 3</option>
<option value='4' <?php if($result['dov']==4){ echo "selected"; } ?>>Groep 4</option>
</select>
</td>
</tr>
<?php }
if($result['tso']>=1){ ?>
<tr>
<td>
Tussentijdse opvang:
</td>
<td>
<select name='tso'>
<option value='1' <?php if($result['tso']==1){ echo "selected"; } ?>>Groep 1</option>
<option value='2' <?php if($result['tso']==2){ echo "selected"; } ?>>Groep 2</option>
<option value='3' <?php if($result['tso']==3){ echo "selected"; } ?>>Groep 3</option>
</select>
</td>
</tr>
<?php }
if($result['nso']>=1){ ?>
<tr>
<td>
Naschoolse opvang:
</td>
<td>
<select name='nso'>
<option value='1' <?php if($result['nso']==1){ echo "selected"; } ?>>Groep 1</option>
<option value='2' <?php if($result['nso']==2){ echo "selected"; } ?>>Groep 2</option>
<option value='3' <?php if($result['nso']==3){ echo "selected"; } ?>>Groep 3</option>
</select>
</td>
</tr>
<?php } ?>
</table>
<input type='hidden' value='<?php echo $kind_id; ?>' name='kind_id'>
<h3 class='white'>Wijzigen</h3>
<input type='submit' value='Wijzigen'>
</form>
</div>
<?php require('php/news_div.php'); ?>
</div>
</div>
<!-- Einde van de main content -->
<?php
require('inc_footer.php');
?>
+91
View File
@@ -0,0 +1,91 @@
<?php
require('inc_header.php');
if(!$login && $type != 1){
header("Location: login.php?msg=U heeft geen toegang tot deze pagina");
}
$type = $_GET['type'];
$nr = $_GET['nr'];
$query = "SELECT * FROM kinderen WHERE $type='$nr' ORDER BY actief DESC, ouder_id, voornaam";
$result_temp = mysqli_query($connection, $query);
?>
<!-- Begin van de main content -->
<div id='container'>
<div id='main'>
<header class='h1_banner'><h1>Beheer <?php echo $type . ": " . $nr; ?></h1></header>
<?php $last_rand = 0; $last_last_rand = 0; while($result = mysqli_fetch_assoc($result_temp)){
$rand = rand(1, 4);
while($rand == $last_rand){
$rand = rand(1,4);
}
if($result['actief']==0){
$rand='5';
}
$opvang = '';
$dov = 0; $tso = 0; $nso = 0;
if($result['dov']>=1){
$opvang .= 'DOV: ' . $result['dov'] . ', ';
$dov = 1;
}
if($result['tso']>=1){
$opvang .= 'TSO: ' . $result['tso'] . ', ';
$tso = 1;
}
if($result['nso']>=1){
$opvang .= 'NSO: ' . $result['nso'] . ', ';
$nso = 1;
}
$opvang = substr($opvang, 0, -2);
if($result['dov']==0 && $result['tso']==0 && $result['nso']==0){
$opvang = '-';
}
$ouder_id = $result['ouder_id'];
$query2 = "SELECT voornaam, tussenvoegsel, achternaam FROM ouders WHERE id='$ouder_id'";
$result_temp2 = mysqli_query($connection, $query2);
$result2 = mysqli_fetch_assoc($result_temp2);
?>
<a href= 'kindpagina.php?kind_id=<?php echo $result['id']; ?>' >
<div id='kind_b' class="nr<?php echo $rand ?>">
<img src="images/pfk/<?php echo $result['kind_foto']; ?>" width="110" height="115">
<div id='cont'>
<h1><?php echo $result['voornaam'] . " " . $result['tussenvoegsel'] . " " . $result['achternaam']; ?></h1>
<p>
Roepnaam: <?php echo $result['roepnaam']; ?>
&emsp; &emsp; &emsp;
Leeftijd: <?php $leeftijd = date_diff(date_create($result['geboortedatum']), date_create('today'))->y; echo $leeftijd; ?>
&emsp; &emsp; &emsp;
Opvang: <?php echo $opvang; ?>
<br>
Ouder: <?php echo $result2['voornaam'] . " " . $result2['tussenvoegsel'] . " " . $result2['achternaam']; ?>
</p>
</div>
</div>
</a>
<?php $last_rand = $rand; } ?>
</div>
</div>
<!-- Einde van de main content -->
<?php
require('inc_footer.php');
?>
Binary file not shown.

After

Width:  |  Height:  |  Size: 7.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 145 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 84 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 947 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 169 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 474 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 122 KiB

View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 99 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 99 KiB

View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.0 KiB

Binary file not shown.
Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 889 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 876 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 519 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 701 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 197 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 125 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 795 KiB

View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

+83
View File
@@ -0,0 +1,83 @@
<div id='clear'>&nbsp;</div>
</div>
</div>
<!-- Einde van de wrapper -->
<!-- Begin van de footer background -->
<div id='footer_background'>
<!-- Begin van de footer -->
<div id='footer'>
<table width="960" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="660" class="footer-nav">
<ul>
<li><a href="index.php">Thuis</a></li>
<li><a href="overons.php">Over ons</a></li>
<li><a href="aanmelden_kind.php">Uw Kind Aanmelden</a></li>
<li><a href="contact.php">Contact</a> </li>
<li><a href="account.php">Mijn Account</a> </li>
<?php if($login){ ?>
<li><a href="php/logout.php">Uitloggen (<?php echo $naam; ?>)</a> </li>
<?php } else { ?>
<li><a href="login.php">Inloggen</a> </li>
<?php } ?>
</ul>
</td>
<td width="300" class="copy-right">Copyright &copy; <a href="http://eigenwijs.serghost.com/index.php">Eigenwijs Kinderdagverblijf</a> 2014<br>
Ontwerp en realisatie: <a href="http://kennyboy.nl" target="_blank">Kenneth van Ewijk</a>, <a href="#" target="_blank">Charles de Beus</a>,
<a href="http://apesoundz.com" target="_blank">Daniel Bouhuys</a> en <a href="#" target="_blank">Lex van Maasakkers</a></td>
</tr>
<tr>
<td height="15" colspan="4"></td>
</tr>
</table>
</div>
<!-- Einde van de footer -->
</div>
<!-- Einde van de footer background -->
<!-- Einde van de pagina -->
<!-- Begin van de scripts -->
<script src='js/jquery-1.10.2.js'></script>
<script src='js/notifications.js'></script>
<script src="js/jquery.flexslider.js"></script>
<script>
$(window).load(function() {
$('.flexslider').flexslider({
animation: "slide",
animationLoop: false,
smoothHeight: true,
pauseOnHover: true,
prevText: "Vorige",
nextText: "Volgende",
slideshow: false
});
});
</script>
<?php if(isset($_GET['msg'])){ ?>
<script>
clearNotify();
</script>
<?php } ?>
<!-- Einde van de scripts -->
</body>
<!-- Einde body -->
</html>
+148
View File
@@ -0,0 +1,148 @@
<!-- Begin php -->
<?php
require('php/connect.php');
if(isset($_SESSION['forgot']) && ($_SESSION['forgot']==1 && $_SERVER['PHP_SELF']!=="/wachtwoord_wijz.php")){
header("Location: wachtwoord_wijz.php?msg=Voer een nieuwe wachtwoord in");
}
if(isset($_SESSION['verify']) && ($_SESSION['verify']==1 && $_SERVER['PHP_SELF']!=="/aanmelden.php")){
header("Location: aanmelden.php?succes=1&msg=Uw email adres is nog niet bevestigd");
}
?>
<!-- Einde php -->
<!-- Begin head -->
<head>
<title>Eigenwijs | Kinderdagverblijf</title>
<link href="css/style.css" rel="stylesheet" type="text/css" />
<link href="js/flexslider.css" rel="stylesheet" type="text/css" />
<link rel="icon" type="image/png" href="images/favicon.png">
<!-- Google Analytics -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-48635904-1', 'eigenwijs.serghost.com');
ga('require', 'displayfeatures');
ga('send', 'pageview');
</script>
</head>
<!-- Einde head -->
<!-- Begin body -->
<body>
<!-- Begin van de pagina -->
<!-- Begin van de holder -->
<div id='holder'>
<!-- Begin van de wrapper -->
<div id='wrapper'>
<!-- Begin van de header -->
<div id='container'>
<?php if(isset($_GET['msg'])){ ?>
<div id='notification' title='Klik om te sluiten'>
<p><?php echo $_GET['msg']; ?></p>
</div>
<div id='clear'>
</div>
<?php } ?>
<div id='header'>
<a href='index.php'>
<div id='left'>
</div>
</a>
<div id='right'>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="480" height="125">
<param name="movie" value="images/logo-element.swf" />
<param name="quality" value="high" />
<param name="wmode" value="transparent"/>
<embed src="images/logo-element.swf" quality="high" type="application/x-shockwave-flash" width="480" height="125" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
</div>
</div>
<!-- Einde van de header -->
</div>
<div id='clear'>&nbsp;</div>
<!-- Begin van de navigation -->
<div id='container'>
<div id='nav'>
<table width='960px'>
<tr>
<td align="center">
<ul>
<li><a href="index.php">Thuis</a></li>
<li><a href="overons.php">Over ons</a></li>
<li><a href="contact.php">Contact</a> </li>
<?php if($login && $type==0){ ?>
<li><a href="aanmelden_kind.php">Uw kind aanmelden</a> </li>
<?php } else { ?>
<li><a href="aanmelden.php">Aanmelden</a> </li>
<?php } ?>
</ul>
</td>
<td>
</td>
<td>
<ul>
<?php
if($login){ ?>
<li style='float: right;'><a href="account.php">Ingelogd als: <?php echo $naam; ?></a> </li>
<?php } ?>
</ul>
</td>
</tr>
</table>
</div>
</div>
<!-- Einde van de header -->
<!-- Begin van de banner -->
<div id='container'>
<div id='banner'>
<a href='account.php'><div id="account-knop">
<h2>Mijn</h2>
<h1>Account</h1>
</div></a>
<?php if($login){ ?>
<a href='php/logout.php'><div id="login-knop">
<h2>&nbsp</h2>
<h1>Uitloggen</h1>
</div></a>
<?php } else { ?>
<a href='login.php'><div id="login-knop">
<h2>&nbsp</h2>
<h1>Inloggen</h1>
</div></a>
<?php } ?>
</div>
</div>
<!-- Einde van de banner -->
<div id='clear'>&nbsp;</div>
+34
View File
@@ -0,0 +1,34 @@
<?php
require('inc_header.php');
?>
<!-- Begin van de main content -->
<div id='container'>
<div id='main'>
<div id='text'>
<h1>Welkom bij Kinderdagverblijf Eigenwijs</h1>
<h3>Bij ons kinderdagverblijf mag ieder kind 'kind' zijn.
Wij gaan er van uit dat onze kinderopvang geen verlenging van school is maar een verlenging van thuis!
Wilt u dat uw kinderen ook bij ons komen spelen?
Dat kan, er is nog plaats.
Ga dan naar de pagina <a href="aanmelden_kind.php"> Uw Kind Aanmelden</a>
</h3>
<br>
<p>Niets is zo belangrijk voor ons als het plezier en de veiligheid van uw kind. U kunt ze dus ook met een gerust hart bij ons onderbrengen.
Wij bieden meerdere typen opvang aan voor kinderen tot 12 jaar: Dagopvang (DOV), Tussentijdse opvang (TSO) en Naschoolse opvang (NSO).
Mocht u meer informatie willen kijk dan bij <a href="overons.php"> Over ons</a> of neem <a href="contact.php">contact</a> op.
</p>
</div>
<?php require('php/news_div.php'); ?>
<?php require('php/contact_div.php'); ?>
</div>
</div>
<!-- Einde van de main content -->
<?php
require('inc_footer.php');
?>
+96
View File
@@ -0,0 +1,96 @@
/*
* jQuery FlexSlider v2.2.0
* http://www.woothemes.com/flexslider/
*
* Copyright 2012 WooThemes
* Free to use under the GPLv2 license.
* http://www.gnu.org/licenses/gpl-2.0.html
*
* Contributing author: Tyler Smith (@mbmufffin)
*/
/* Browser Resets
*********************************/
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus {outline: none;}
.slides,
.flex-control-nav,
.flex-direction-nav {margin: 0; padding: 0; list-style: none;}
/* Icon Fonts
*********************************/
/* Font-face Icons */
@font-face {
font-family: 'flexslider-icon';
src:url('fonts/flexslider-icon.eot');
src:url('fonts/flexslider-icon.eot?#iefix') format('embedded-opentype'),
url('fonts/flexslider-icon.woff') format('woff'),
url('fonts/flexslider-icon.ttf') format('truetype'),
url('fonts/flexslider-icon.svg#flexslider-icon') format('svg');
font-weight: normal;
font-style: normal;
}
/* FlexSlider Necessary Styles
*********************************/
.flexslider {margin: 0; padding: 0;}
.flexslider .slides > li {display: none; -webkit-backface-visibility: hidden;} /* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {width: 100%; display: block;}
.flex-pauseplay span {text-transform: capitalize;}
/* Clearfix for the .slides element */
.slides:after {content: "\0020"; display: block; clear: both; visibility: hidden; line-height: 0; height: 0;}
html[xmlns] .slides {display: block;}
* html .slides {height: 1%;}
/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
* include js that eliminates this class on page load */
.no-js .slides > li:first-child {display: block;}
/* FlexSlider Default Theme
*********************************/
.flexslider { margin: 0 0 60px; background: #fff; border: 4px solid #fff; position: relative; -webkit-border-radius: 4px; -moz-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; -webkit-box-shadow: 0 1px 4px rgba(0,0,0,.2); -moz-box-shadow: 0 1px 4px rgba(0,0,0,.2); -o-box-shadow: 0 1px 4px rgba(0,0,0,.2); box-shadow: 0 1px 4px rgba(0,0,0,.2); zoom: 1; }
.flex-viewport { max-height: 2000px; -webkit-transition: all 1s ease; -moz-transition: all 1s ease; -o-transition: all 1s ease; transition: all 1s ease; }
.loading .flex-viewport { max-height: 300px; }
.flexslider .slides { zoom: 1; }
.carousel li { margin-right: 5px; }
/* Direction Nav */
.flex-direction-nav {*height: 0;}
.flex-direction-nav a { display: block; width: 40px; height: 40px; margin: -20px 0 0; position: absolute; top: 50%; z-index: 10; overflow: hidden; opacity: 0; cursor: pointer; color: rgba(0,0,0,0.8); text-shadow: 1px 1px 0 rgba(255,255,255,0.3); -webkit-transition: all .3s ease; -moz-transition: all .3s ease; transition: all .3s ease; }
.flex-direction-nav .flex-prev { left: -50px; }
.flex-direction-nav .flex-next { right: -50px; text-align: right; }
.flexslider:hover .flex-prev { opacity: 0.7; left: 10px; }
.flexslider:hover .flex-next { opacity: 0.7; right: 10px; }
.flexslider:hover .flex-next:hover, .flexslider:hover .flex-prev:hover { opacity: 1; }
.flex-direction-nav .flex-disabled { opacity: 0!important; filter:alpha(opacity=0); cursor: default; }
.flex-direction-nav a:before { font-family: "flexslider-icon"; font-size: 40px; display: inline-block; content: '\f001'; }
.flex-direction-nav a.flex-next:before { content: '\f002'; }
/* Pause/Play */
.flex-pauseplay a { display: block; width: 20px; height: 20px; position: absolute; bottom: 5px; left: 10px; opacity: 0.8; z-index: 10; overflow: hidden; cursor: pointer; color: #000; }
.flex-pauseplay a:before { font-family: "flexslider-icon"; font-size: 20px; display: inline-block; content: '\f004'; }
.flex-pauseplay a:hover { opacity: 1; }
.flex-pauseplay a.flex-play:before { content: '\f003'; }
/* Control Nav */
.flex-control-nav {width: 100%; position: absolute; bottom: -40px; text-align: center;}
.flex-control-nav li {margin: 0 6px; display: inline-block; zoom: 1; *display: inline;}
.flex-control-paging li a {width: 11px; height: 11px; display: block; background: #666; background: rgba(0,0,0,0.5); cursor: pointer; text-indent: -9999px; -webkit-border-radius: 20px; -moz-border-radius: 20px; -o-border-radius: 20px; border-radius: 20px; -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.3); -moz-box-shadow: inset 0 0 3px rgba(0,0,0,0.3); -o-box-shadow: inset 0 0 3px rgba(0,0,0,0.3); box-shadow: inset 0 0 3px rgba(0,0,0,0.3); }
.flex-control-paging li a:hover { background: #333; background: rgba(0,0,0,0.7); }
.flex-control-paging li a.flex-active { background: #000; background: rgba(0,0,0,0.9); cursor: default; }
.flex-control-thumbs {margin: 5px 0 0; position: static; overflow: hidden;}
.flex-control-thumbs li {width: 25%; float: left; margin: 0;}
.flex-control-thumbs img {width: 100%; display: block; opacity: .7; cursor: pointer;}
.flex-control-thumbs img:hover {opacity: 1;}
.flex-control-thumbs .flex-active {opacity: 1; cursor: default;}
@media screen and (max-width: 860px) {
.flex-direction-nav .flex-prev { opacity: 1; left: 10px;}
.flex-direction-nav .flex-next { opacity: 1; right: 10px;}
}
Binary file not shown.
+19
View File
@@ -0,0 +1,19 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata>
This is a custom SVG font generated by IcoMoon.
<iconset grid="14"></iconset>
</metadata>
<defs>
<font id="flexslider-icon" horiz-adv-x="448" >
<font-face units-per-em="448" ascent="384" descent="-64" />
<missing-glyph horiz-adv-x="448" />
<glyph unicode="&#xf001;" d="M 185.50-9.25l-163.00,162.75q-9.25,9.25 -9.25,22.625t 9.25,22.625l 163.00,162.75q 9.25,9.25 22.625,9.25t 22.625-9.25l 18.75-18.75q 9.25-9.25 9.25-22.625t-9.25-22.625l-121.50-121.50l 121.50-121.25q 9.25-9.50 9.25-22.75t-9.25-22.50l-18.75-18.75q-9.25-9.25 -22.625-9.25t-22.625,9.25z" horiz-adv-x="288" />
<glyph unicode="&#xf002;" d="M 274.75,176.00q0.00-13.00 -9.25-22.75l-163.00-162.75q-9.25-9.25 -22.50-9.25t-22.50,9.25l-19.00,18.75q-9.25,9.75 -9.25,22.75q0.00,13.25 9.25,22.50l 121.50,121.50l-121.50,121.25q-9.25,9.75 -9.25,22.75q0.00,13.25 9.25,22.50l 19.00,18.75q 9.00,9.50 22.50,9.50t 22.50-9.50l 163.00-162.75q 9.25-9.25 9.25-22.50z" horiz-adv-x="288" />
<glyph unicode="&#xf003;" d="M 346.00,152.25l-332.00-184.50q-5.75-3.25 -9.875-0.75t-4.125,9.00l0.00,368.00 q0.00,6.50 4.125,9.00t 9.875-0.75l 332.00-184.50q 5.75-3.25 5.75-7.75t-5.75-7.75z" horiz-adv-x="352" />
<glyph unicode="&#xf004;" d="M 384.00,336.00l0.00-352.00 q0.00-6.50 -4.75-11.25t-11.25-4.75l-128.00,0.00 q-6.50,0.00 -11.25,4.75t-4.75,11.25l0.00,352.00 q0.00,6.50 4.75,11.25t 11.25,4.75l 128.00,0.00 q 6.50,0.00 11.25-4.75t 4.75-11.25zM 160.00,336.00l0.00-352.00 q0.00-6.50 -4.75-11.25t-11.25-4.75l-128.00,0.00 q-6.50,0.00 -11.25,4.75t-4.75,11.25l0.00,352.00 q0.00,6.50 4.75,11.25t 11.25,4.75l 128.00,0.00 q 6.50,0.00 11.25-4.75t 4.75-11.25z" horiz-adv-x="384" />
<glyph unicode="&#xf005;" d="M 402.75,208.00q0.00-13.25 -9.25-22.50l-162.75-162.75q-9.50-9.50 -22.75-9.50q-13.50,0.00 -22.50,9.50l-162.75,162.75q-9.50,9.00 -9.50,22.50q0.00,13.25 9.50,22.75l 18.50,18.75q 9.75,9.25 22.75,9.25q 13.25,0.00 22.50-9.25l 121.50-121.50l 121.50,121.50q 9.25,9.25 22.50,9.25q 13.00,0.00 22.75-9.25l 18.75-18.75q 9.25-9.75 9.25-22.75z" horiz-adv-x="416" />
<glyph unicode="&#x20;" horiz-adv-x="224" />
<glyph class="hidden" unicode="&#xf000;" d="M0,384L 448 -64L0 -64 z" horiz-adv-x="0" />
</font></defs></svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.
Binary file not shown.
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

View File
+9789
View File
File diff suppressed because it is too large Load Diff

Some files were not shown because too many files have changed in this diff Show More