feat: Add npm dependencies and update vendor paths
- Add package.json dependencies: jquery, jquery-ui, moment, daterangepicker, wavesurfer.js, air-datepicker - Create scripts/setup-vendor.js to copy npm packages to public/assets/vendor - Update view templates to use vendor paths instead of old /js/ or CDN URLs - Clean up legacy commented-out scripts in master layout
@@ -0,0 +1 @@
|
||||
RewriteEngine Off
|
||||
@@ -0,0 +1 @@
|
||||
RewriteEngine Off
|
||||
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
include("../../connect.php");
|
||||
if ( (($_POST['fullname']!='')) &&
|
||||
(($_POST['email']!='')) &&
|
||||
(($_POST['phonefixed']!='')) &&
|
||||
(($_POST['phonemobile']!='')) &&
|
||||
(($_POST['age']!='')) ) {
|
||||
mysql_query("insert into actiedeelnemers(fullname, email, phonehome, phonemobile, age, ip) values ('".addslashes($_POST['fullname'])."','".addslashes($_POST['email'])."','".addslashes($_POST['phonefixed'])."','".addslashes($_POST['phonemobile'])."','".addslashes($_POST['age'])."','".$_SERVER[REMOTE_ADDR]."')");
|
||||
echo "Bedankt voor je deelname! Als je gewonnen hebt bellen we je op de dag van de trekkertrek op.";
|
||||
echo "<br>";
|
||||
echo "<a href=\"/\">terug naar de website</a>";
|
||||
} else {
|
||||
echo "Niet alle velden zijn ingevuld. Probeer het opnieuw.";
|
||||
}
|
||||
?>
|
||||
|
After Width: | Height: | Size: 22 KiB |
|
After Width: | Height: | Size: 18 KiB |
|
After Width: | Height: | Size: 130 KiB |
|
After Width: | Height: | Size: 40 KiB |
|
After Width: | Height: | Size: 20 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 6.3 KiB |
|
After Width: | Height: | Size: 17 KiB |
|
After Width: | Height: | Size: 67 KiB |
|
After Width: | Height: | Size: 17 KiB |
|
After Width: | Height: | Size: 43 KiB |
|
After Width: | Height: | Size: 31 KiB |
|
After Width: | Height: | Size: 27 KiB |
|
After Width: | Height: | Size: 11 KiB |
|
After Width: | Height: | Size: 25 KiB |
|
After Width: | Height: | Size: 26 KiB |
|
After Width: | Height: | Size: 34 KiB |
@@ -0,0 +1,97 @@
|
||||
body{
|
||||
background-color: #30629a;
|
||||
}
|
||||
p{
|
||||
font-family: 'Roboto', sans-serif;
|
||||
font-weight: 500;
|
||||
color: white;
|
||||
text-align: center;
|
||||
margin: 30px 0px;
|
||||
}
|
||||
a{
|
||||
font-family: 'Roboto', sans-serif;
|
||||
font-weight: 300;
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
}
|
||||
div#single-song-player{
|
||||
width: 320px;
|
||||
height: 120px;
|
||||
margin-top: 100px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
margin-bottom: 200px;
|
||||
}
|
||||
div#top{
|
||||
padding: 20px 25px;
|
||||
background-color: #ffffff;
|
||||
width: 270px;
|
||||
border-top-left-radius: 5px;
|
||||
border-top-right-radius: 5px;
|
||||
}
|
||||
div#song-information-container{
|
||||
float: left;
|
||||
}
|
||||
div#song-action-container{
|
||||
float: right;
|
||||
}
|
||||
div#bottom-container{
|
||||
width: 320px;
|
||||
text-align: center;
|
||||
margin-top: -35px;
|
||||
}
|
||||
div#amplitude-song-time-visualization{
|
||||
background-color: #fff;
|
||||
border-bottom-left-radius: 5px;
|
||||
border-bottom-right-radius: 5px;
|
||||
width: 320px;
|
||||
height: 45px;
|
||||
}
|
||||
div#amplitude-song-time-visualization-status{
|
||||
background-color: #cddff1;
|
||||
border-bottom-left-radius: 5px;
|
||||
border-bottom-right-radius: 5px;
|
||||
height: 45px;
|
||||
}
|
||||
span#song-timing{
|
||||
color: #41557d;
|
||||
font-family: 'Roboto', sans-serif;
|
||||
font-weight: 300;
|
||||
font-size: 14px;
|
||||
}
|
||||
div.clear{
|
||||
clear: both;
|
||||
}
|
||||
#amplitude-play-pause{
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
margin-top: 7px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.amplitude-paused{
|
||||
background-image: url('../images/blue-play.png');
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
.amplitude-playing{
|
||||
background-image: url('../images/blue-pause.png');
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
#amplitude-now-playing-artist{
|
||||
color: #45587f;
|
||||
font-family: 'Roboto', sans-serif;
|
||||
font-weight: 500;
|
||||
font-size: 18px;
|
||||
}
|
||||
#amplitude-now-playing-album{
|
||||
color: #7b7b7b;
|
||||
font-family: 'Roboto', sans-serif;
|
||||
font-weight: 500;
|
||||
font-size: 12px;
|
||||
}
|
||||
#amplitude-now-playing-title{
|
||||
color: #45587f;
|
||||
font-family: 'Roboto', sans-serif;
|
||||
font-weight: 500;
|
||||
font-size: 14px;
|
||||
margin-right: 10px;
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
news
|
||||
|
After Width: | Height: | Size: 43 B |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 4.6 KiB |
|
After Width: | Height: | Size: 208 B |
|
After Width: | Height: | Size: 196 B |
|
After Width: | Height: | Size: 155 B |
|
After Width: | Height: | Size: 157 B |
|
After Width: | Height: | Size: 159 B |
|
After Width: | Height: | Size: 164 B |
|
After Width: | Height: | Size: 809 B |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 145 B |
|
After Width: | Height: | Size: 62 B |
|
After Width: | Height: | Size: 2.1 KiB |
|
After Width: | Height: | Size: 781 B |
|
After Width: | Height: | Size: 733 B |
|
After Width: | Height: | Size: 619 B |
|
After Width: | Height: | Size: 533 B |
|
After Width: | Height: | Size: 703 B |
|
After Width: | Height: | Size: 467 B |
|
After Width: | Height: | Size: 605 B |
|
After Width: | Height: | Size: 714 B |
|
After Width: | Height: | Size: 612 B |
|
After Width: | Height: | Size: 581 B |
|
After Width: | Height: | Size: 685 B |
|
After Width: | Height: | Size: 525 B |
|
After Width: | Height: | Size: 478 B |
|
After Width: | Height: | Size: 581 B |
|
After Width: | Height: | Size: 510 B |
|
After Width: | Height: | Size: 432 B |
|
After Width: | Height: | Size: 576 B |
|
After Width: | Height: | Size: 426 B |
|
After Width: | Height: | Size: 507 B |
|
After Width: | Height: | Size: 582 B |
|
After Width: | Height: | Size: 677 B |
|
After Width: | Height: | Size: 594 B |
|
After Width: | Height: | Size: 685 B |
|
After Width: | Height: | Size: 683 B |
|
After Width: | Height: | Size: 516 B |
|
After Width: | Height: | Size: 760 B |
|
After Width: | Height: | Size: 743 B |
|
After Width: | Height: | Size: 391 B |
|
After Width: | Height: | Size: 755 B |
|
After Width: | Height: | Size: 753 B |
|
After Width: | Height: | Size: 781 B |
|
After Width: | Height: | Size: 773 B |
|
After Width: | Height: | Size: 733 B |
|
After Width: | Height: | Size: 738 B |
|
After Width: | Height: | Size: 789 B |
|
After Width: | Height: | Size: 816 B |
|
After Width: | Height: | Size: 824 B |
|
After Width: | Height: | Size: 813 B |
|
After Width: | Height: | Size: 850 B |
|
After Width: | Height: | Size: 363 B |
|
After Width: | Height: | Size: 475 B |
|
After Width: | Height: | Size: 719 B |
|
After Width: | Height: | Size: 734 B |
|
After Width: | Height: | Size: 745 B |
|
After Width: | Height: | Size: 779 B |
|
After Width: | Height: | Size: 702 B |
|
After Width: | Height: | Size: 622 B |
|
After Width: | Height: | Size: 775 B |
|
After Width: | Height: | Size: 790 B |
|
After Width: | Height: | Size: 764 B |
|
After Width: | Height: | Size: 793 B |
|
After Width: | Height: | Size: 836 B |
|
After Width: | Height: | Size: 841 B |
|
After Width: | Height: | Size: 847 B |
|
After Width: | Height: | Size: 556 B |
|
After Width: | Height: | Size: 731 B |
|
After Width: | Height: | Size: 653 B |
|
After Width: | Height: | Size: 705 B |
|
After Width: | Height: | Size: 668 B |
|
After Width: | Height: | Size: 286 B |
|
After Width: | Height: | Size: 201 B |
|
After Width: | Height: | Size: 211 B |