Added EULA stub page

This commit is contained in:
Lukas Eder 2013-08-27 12:27:56 +02:00
parent 484c7e762a
commit 560971a91e

25
jOOQ-website/eula.php Normal file
View File

@ -0,0 +1,25 @@
<?php
require 'frame.php';
function getH1() {
return 'End User License Agreement';
}
function getActiveMenu() {
return "";
}
function printContent() {
global $root;
global $minorVersion;
global $version;
?>
<h2>End User License Agreement</h2>
<p>
The jOOQ Commercial License is not yet effective. You may thus not yet use jOOQ using the Commercial License.
</p>
<p>
Come back soon to learn how to commercially license jOOQ.
</p>
<?php
}
?>