-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fff6a70
commit 716d517
Showing
4 changed files
with
112 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?php namespace App\Controllers; | ||
|
||
class FinePrint extends BaseController | ||
{ | ||
public function index() | ||
{ | ||
echo $this->render('fine_print'); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
<?= $this->extend('layouts/app') ?> | ||
|
||
<?= $this->section('content') ?> | ||
|
||
<!-- CONTENT --> | ||
<div class="clr"></div> | ||
<section id="content-outer"> | ||
<div id="content-inner"> | ||
<div id="policies-icon-holder"> | ||
<img src="/assets/icons/44521256.png" id="policies-icon"/> | ||
</div><!--icon ends here--> | ||
|
||
<div class="clr"></div> | ||
|
||
<div class="inner-page-text-box"> | ||
<div class="inner-page-text-box-title">Trademarks</div> | ||
<p> | ||
CodeIgniter® is a registered trademark of the CodeIgniter Foundation, having being transferred from the | ||
British Columbia Institute of Technology in 2019. | ||
</p> | ||
<p> | ||
The CodeIgniter logo is an unregistered mark owned by the CodeIgniter Foundation, having been transferred from BCIT. | ||
We supply <a href="/data/ci-logo.zip" target="_blank" class="link-primary">several versions of the CodeIgniter logo</a> for use in your projects, subject to the guidelines below. | ||
</p> | ||
<p> | ||
<img src="/assets/icons/creative-commons.png" id="creative-commons-image"/> | ||
</p> | ||
|
||
</div><!--inner-page-text-box ends here--> | ||
|
||
<div class="clr"></div> | ||
|
||
|
||
<div class="inner-page-text-box"> | ||
<div class="inner-page-text-box-title">Privacy Policy</div> | ||
<p> | ||
You are welcome to use the CodeIgniter logo in your project, provided that you ... | ||
</p> | ||
<ul> | ||
<li> | ||
Do not make unauthorized or confusing use of the CodeIgniter trademark or a variation of it, including creating | ||
the impression that the Foundation sponsors or endorses your website, products, or services. | ||
</li> | ||
<li>Use the ® trademark registration symbol when you use the CodeIgniter registered trademark</li> | ||
<li>Use capitalization and bold or italic fonts to distinguish the CodeIgniter trademark from the text around it. </li> | ||
<li> | ||
Place a conspicuous legend at least once on webpages using the CodeIgniter trademark and on the title page of | ||
any documentation or sales literature bearing the CodeIgniter trademark. An example of an acceptable legend is: | ||
"The CodeIgniter mark is owned and may be registered by the CodeIgniter Foundation." | ||
</li> | ||
<li> | ||
Place a disclaimer conspicuously at least once on webpages using the CodeIgniter trademark and on the title page | ||
of any documentation or sales literature bearing the CodeIgniter trademark. An example of an acceptable disclaimer | ||
is: "\_________ is an independent \_________ and has not been authorized, sponsored, or otherwise approved by | ||
the CodeIgniter Foundation." [In each case, fill the blank space with the name and type of your product.] | ||
</li> | ||
<li> | ||
Do not change the spelling, make other changes to the CodeIgniter trademark, or combine the CodeIgniter trademark | ||
with any other trademark, term, or designation. | ||
</li> | ||
<li> | ||
Use the CodeIgniter trademark only in connection with goods and services directly related to CodeIgniter or | ||
services associated with that trademark. | ||
</li> | ||
<li>Do not use the CodeIgniter trademark or any variation of it in your domain name or URL.</li> | ||
<li>Do not use the CodeIgniter trademark for your own products and services that are related to web publishing, programming frameworks, or related software. </li> | ||
<li>Do not claim ownership rights in the CodeIgniter trademark.</li> | ||
</ul> | ||
|
||
</div><!--inner-page-text-box ends here--> | ||
|
||
<div class="clr"></div> | ||
|
||
<div class="inner-page-text-box"> | ||
<div class="inner-page-text-box-title">Website data</div> | ||
<p> | ||
Mention of third party companies and products on this web site is for informational purposes | ||
only and constitutes neither an endorsement nor a recommendation. | ||
</p> | ||
</div><!--inner-page-text-box ends here--> | ||
|
||
<div class="clr"></div> | ||
|
||
<div class="inner-page-text-box"> | ||
<div class="inner-page-text-box-title">Links to Other Web Sites</div> | ||
<p> | ||
The CodeIgniter Foundation makes no representations whatsoever about any other websites which you may access from here. | ||
When you access an external website, please understand that it is independent from this website, | ||
and that we has no control over the content on that website. A link to an external site does not mean that the | ||
CodeIgniter Foundation endorses or accepts any responsibility for the content or use of such website. | ||
</p> | ||
</div><!--inner-page-text-box ends here--> | ||
|
||
<div class="clr"></div> | ||
|
||
</div><!--content-inner ends here--> | ||
</div><!--section ende--> | ||
|
||
|
||
<div class="clr"></div> | ||
|
||
<?= $this->endSection() ?> |
Binary file not shown.