Initial commit
This commit is contained in:
15
site/en/admin/creditcards.delete.php
Normal file
15
site/en/admin/creditcards.delete.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<h2>Administrate FTI: Credit Cards</h2>
|
||||
<p>
|
||||
Are you sure you want to delete credit card information for
|
||||
<?php echo $this->data['card']->card_name ?>?
|
||||
</p>
|
||||
<p>
|
||||
<form action="creditcards.php" method="post" accept-charset="utf-8">
|
||||
<input type="hidden" name="id" value="<?php echo $this->data['card']['id'] ?>" id="id"/>
|
||||
<input type="hidden" name="do" value="reallydelete" id="do"/>
|
||||
<p>
|
||||
<input type="submit" value="Yes, delete info"/>
|
||||
No, return to <a href='/admin/creditcards.php'>credit card list</a>.
|
||||
</p>
|
||||
</form>
|
||||
</p>
|
||||
29
site/en/admin/creditcards.php
Normal file
29
site/en/admin/creditcards.php
Normal file
@@ -0,0 +1,29 @@
|
||||
<h2>Administrate FTI: Credit Cards</h2>
|
||||
<p>
|
||||
Below is a list of all the credit cards you have on file. You can view
|
||||
the full credit card information, or delete the information.
|
||||
</p>
|
||||
<p>
|
||||
Remember to delete credit card information as soon as possible to reduce to
|
||||
risk of information being stolen.
|
||||
</p>
|
||||
<div class='admin_summary_box'>
|
||||
<h3>All Credit Card Information</h3>
|
||||
<?php if(count($this->data['creditcards']) > 0): ?>
|
||||
<table class='summary_table'>
|
||||
<?php for($c = 0; $c < count($this->data['creditcards']); $c++): ?>
|
||||
<tr>
|
||||
<td class='summary_data'>
|
||||
<?php echo $this->data['creditcards'][$c]->card_name ?>
|
||||
</td>
|
||||
<td class='summary_actions'>
|
||||
<a href='/admin/creditcards.php?do=view&id=<?php echo $this->data['creditcards'][$c]['id'] ?>'>View</a>
|
||||
<a href='/admin/creditcards.php?do=delete&id=<?php echo $this->data['creditcards'][$c]['id'] ?>'>Delete</a>
|
||||
</td>
|
||||
</tr>
|
||||
<?php endfor; ?>
|
||||
</table>
|
||||
<?php else: ?>
|
||||
<p>There are currently no credit cards on file.</p>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
24
site/en/admin/creditcards.view.php
Normal file
24
site/en/admin/creditcards.view.php
Normal file
@@ -0,0 +1,24 @@
|
||||
<h2>Administrate FTI: Credit Cards</h2>
|
||||
<p>
|
||||
Below is the credit card information for the card you selected.
|
||||
</p>
|
||||
<p>
|
||||
Return to
|
||||
<a href='/admin/creditcards.php'>credit card list</a>.
|
||||
</p>
|
||||
<p>
|
||||
<a href='/admin/creditcards.php?do=delete&id=<?php echo $this->data['card']['id'] ?>'>
|
||||
Delete this card
|
||||
</a>
|
||||
</p>
|
||||
<div class='admin_summary_box' id='creditcards_summary'>
|
||||
<h3>Credit Card Information</h3>
|
||||
<table class='data_table'>
|
||||
<?php foreach($this->data['card'] as $key => $val): ?>
|
||||
<tr>
|
||||
<td class='data_key'><?php echo ucfirst(str_replace('_',' ',$key)) ?></td>
|
||||
<td class='data_value'><?php echo $val ?></td>
|
||||
</tr>
|
||||
<?php endforeach; ?>
|
||||
</table>
|
||||
</div>
|
||||
68
site/en/admin/home.php
Normal file
68
site/en/admin/home.php
Normal file
@@ -0,0 +1,68 @@
|
||||
<h2>Administrate FTI</h2>
|
||||
<p>
|
||||
Welcome, John.
|
||||
</p>
|
||||
<div class='admin_summary_box' id='news_summary'>
|
||||
<h3>Recent News Items</h3>
|
||||
<p>
|
||||
<a href='/admin/news.php?do=add'>Add news post</a>
|
||||
</p>
|
||||
<?php if(count($this->data['news']) > 0): ?>
|
||||
<table class='summary_table'>
|
||||
<?php for($c = 0; ($c < 10 && $c < count($this->data['news'])); $c++): ?>
|
||||
<tr>
|
||||
<td class='summary_data'><?php echo $this->data['news'][$c]->title ?></td>
|
||||
<td class='summary_actions'>
|
||||
<a href='/admin/news.php?do=edit&id=<?php echo $this->data['news'][$c]['id'] ?>'>Edit</a>
|
||||
<a href='/admin/news.php?do=delete&id=<?php echo $this->data['news'][$c]['id'] ?>'>Delete</a>
|
||||
</td>
|
||||
</tr>
|
||||
<?php endfor; ?>
|
||||
</table>
|
||||
<?php else: ?>
|
||||
<p>There are currently no news posts on the home page.</p>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
|
||||
<div class='admin_summary_box' id='creditcards_summary'>
|
||||
<h3>Recent Credit Card Information</h3>
|
||||
<?php if(count($this->data['creditcards']) > 0): ?>
|
||||
<table class='summary_table'>
|
||||
<?php for($c = 0; ($c < 10 && $c < count($this->data['creditcards'])); $c++): ?>
|
||||
<tr>
|
||||
<td class='summary_data'>
|
||||
<?php echo $this->data['creditcards'][$c]->card_name ?>
|
||||
</td>
|
||||
<td class='summary_actions'>
|
||||
<a href='/admin/creditcards.php?do=view&id=<?php echo $this->data['creditcards'][$c]['id'] ?>'>View</a>
|
||||
<a href='/admin/creditcards.php?do=delete&id=<?php echo $this->data['creditcards'][$c]['id'] ?>'>Delete</a>
|
||||
</td>
|
||||
</tr>
|
||||
<?php endfor; ?>
|
||||
</table>
|
||||
<?php else: ?>
|
||||
<p>There is currently no credit card information on file.</p>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
|
||||
<div class='admin_summary_box'>
|
||||
<h3>Recent Passport Information</h3>
|
||||
<?php if(count($this->data['passports']) > 0): ?>
|
||||
<table class='summary_table'>
|
||||
<?php for($c = 0; ($c < 10 && $c < count($this->data['passports'])); $c++): ?>
|
||||
<tr>
|
||||
<td class='summary_data'>
|
||||
<?php echo $this->data['passports'][$c]->name ?>
|
||||
</td>
|
||||
<td class='summary_actions'>
|
||||
<a href='/admin/passports.php?do=view&id=<?php echo $this->data['passports'][$c]['id'] ?>'>View</a>
|
||||
<a href='/admin/passports.php?do=delete&id=<?php echo $this->data['passports'][$c]['id'] ?>'>Delete</a>
|
||||
</td>
|
||||
</tr>
|
||||
<?php endfor; ?>
|
||||
</table>
|
||||
<?php else: ?>
|
||||
<p>There are currently no passports on file.</p>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
|
||||
74
site/en/admin/linksandnumbers.add.edit.php
Normal file
74
site/en/admin/linksandnumbers.add.edit.php
Normal file
@@ -0,0 +1,74 @@
|
||||
<h2>Administrate FTI: Links and Numbers</h2>
|
||||
<p>
|
||||
<?php if(isset($this->data['editing'])): ?>
|
||||
Edit the links and numbers item below and click on "Save item" at the bottom
|
||||
of the page when you are done.
|
||||
<?php else: ?>
|
||||
Add a links and numbers item to the links and numbers page by filling out the form below.
|
||||
<?php endif; ?>
|
||||
</p>
|
||||
<p>
|
||||
You make bold and italics text by selecting the text that you want to make
|
||||
bold or italics inside the "News text" box and clicking either the bold (b)
|
||||
button or the italics (i) button on the top right of the news box.
|
||||
</p>
|
||||
<p>
|
||||
Similarly, select any text that you want to make a link and click on
|
||||
the link button. A window will pop up and prompt you for the URL
|
||||
that you would like that text to link to.
|
||||
</p>
|
||||
<p>
|
||||
You can create two types of Links and Numbers items: Pages and External links.
|
||||
To create an External link, select that option from the "Type" list, enter
|
||||
a title for the link and put the URL for the link (only the URL) in the "Text"
|
||||
box.
|
||||
</p>
|
||||
<p>
|
||||
To create a regular Page, select that option for the "Type" list, enter a
|
||||
title that will appear on the Links and Numbers page and put the
|
||||
text for the page in the "Text" page.
|
||||
</p>
|
||||
<div class='admin_summary_box'>
|
||||
<h3><?php echo isset($this->data['editing']) ? 'Edit' : 'Add' ?> Links and Numbers Item</h3>
|
||||
<form action="linksandnumbers.php" method="post" id='linksandnumbers_form' accept-charset="utf-8">
|
||||
<input type="hidden" name="do" value="really<?php echo isset($this->data['item']) ? 'edit' : 'add' ?>" id="do"/>
|
||||
<?php if(isset($this->data['editing'])): ?>
|
||||
<input type='hidden' name='id' value='<?php echo $this->data['item']['id'] ?>' id='id'/>
|
||||
<?php endif; ?>
|
||||
<p class='field'>
|
||||
<label for='title'>Title</label>
|
||||
<input type="text" name="title"
|
||||
value="<?php echo isset($this->data['editing']) ? htmlspecialchars($this->data['item']->title) : '' ?>"
|
||||
id="title" class='long' />
|
||||
</p>
|
||||
<p class='field'>
|
||||
<label for='subtitle'>Subtitle</label>
|
||||
<input type="text" name="subtitle"
|
||||
value="<?php echo isset($this->data['editing']) ? htmlspecialchars($this->data['item']->subtitle) : '' ?>"
|
||||
id="subtitle" class='long' />
|
||||
</p>
|
||||
<p class='field'>
|
||||
<label for='type'>Type</label>
|
||||
<select name='type' id='type'>
|
||||
<?php
|
||||
foreach(array('External link','Page') as $type):
|
||||
$xmlType = strtolower(str_replace(' ','_',$type));
|
||||
if(isset($this->data['editing']) && $xmlType == (string)$this->data['item']->type):
|
||||
echo "<option value='$xmlType' selected='selected'>".$type."</option>";
|
||||
else:
|
||||
echo "<option value='$xmlType'>".$type."</option>";
|
||||
endif;
|
||||
endforeach;
|
||||
?>
|
||||
</select>
|
||||
</p>
|
||||
<p class='field'>
|
||||
<label for='text'>Links and numbers text</label>
|
||||
<?php include 'textboxbuttons.php' ?>
|
||||
<textarea id='text' name='text'><?php
|
||||
echo isset($this->data['editing']) ? preg_replace("#<!\[\CDATA\[(.*)]]>#","$1",(string)$this->data['item']->text) : ''
|
||||
?></textarea>
|
||||
</p>
|
||||
<p><input type="submit" value="<?php echo isset($this->data['editing']) ? 'Save' : 'Add' ?> item"></p>
|
||||
</form>
|
||||
</div>
|
||||
19
site/en/admin/linksandnumbers.delete.php
Normal file
19
site/en/admin/linksandnumbers.delete.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<h2>Administrate FTI: Links and Number</h2>
|
||||
<p>
|
||||
Please decide if you really want to delete this links and numbers item below.
|
||||
</p>
|
||||
<div class='admin_summary_box'>
|
||||
<h3>Delete Links and Numbers Item</h3>
|
||||
<p>
|
||||
Do you really want to delete the links and numbers item
|
||||
"<?php echo $this->data['item']->title ?>"?
|
||||
</p>
|
||||
<form action="linksandnumbers.php" method="post" id='linksandnumbers_form' accept-charset="utf-8">
|
||||
<input type="hidden" name="do" value="reallydelete" id="do"/>
|
||||
<input type="hidden" name="id" value="<?php echo $this->data['item']['id'] ?>" id="id"/>
|
||||
<p>
|
||||
<input type="submit" value="Delete news item">
|
||||
<a href='linksandnumbers.php' title="Don't delete links and numbers item">No, return to links and numbers items list</a>
|
||||
</p>
|
||||
</form>
|
||||
</div>
|
||||
22
site/en/admin/linksandnumbers.php
Normal file
22
site/en/admin/linksandnumbers.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<h2>Administrate FTI: Links and Numbers</h2>
|
||||
<p>
|
||||
Below is a list of all the links and numbers items on the Links and
|
||||
Numbers page of FTI. You can add, edit or delete links and numbers items.
|
||||
</p>
|
||||
<div class='admin_summary_box' id='news_summary'>
|
||||
<h3>All Links and Numbers Items</h3>
|
||||
<p>
|
||||
<a href='/admin/linksandnumbers.php?do=add'>Add Links and Number Item</a>
|
||||
</p>
|
||||
<table class='summary_table'>
|
||||
<?php for($c = 0; $c < count($this->data['linksandnumbers']); $c++): ?>
|
||||
<tr>
|
||||
<td class='summary_data'><?php echo $this->data['linksandnumbers'][$c]->title ?></td>
|
||||
<td class='summary_actions'>
|
||||
<a href='/admin/linksandnumbers.php?do=edit&id=<?php echo $this->data['linksandnumbers'][$c]['id'] ?>'>Edit</a>
|
||||
<a href='/admin/linksandnumbers.php?do=delete&id=<?php echo $this->data['linksandnumbers'][$c]['id'] ?>'>Delete</a>
|
||||
</td>
|
||||
</tr>
|
||||
<?php endfor; ?>
|
||||
</table>
|
||||
</div>
|
||||
17
site/en/admin/login.php
Normal file
17
site/en/admin/login.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<div class='login-box'>
|
||||
<h2>Login</h2>
|
||||
<form action="login.php" method="post" accept-charset="utf-8">
|
||||
<p class='field'>
|
||||
<label for='username'>Username</label>
|
||||
<input type="text" name="username" value="" id="username"/>
|
||||
</p>
|
||||
<p class='field'>
|
||||
<label for='password'>Password</label>
|
||||
<input type="password" name="password" value="" id="password"/>
|
||||
</p>
|
||||
<p><input type="submit" value="Login →"></p>
|
||||
</form>
|
||||
<p>
|
||||
« <a href='/' title='Home page'>Go to home page</a>
|
||||
</p>
|
||||
</div>
|
||||
7
site/en/admin/menu.php
Normal file
7
site/en/admin/menu.php
Normal file
@@ -0,0 +1,7 @@
|
||||
<ul id='admin_nav'>
|
||||
<li id='index_link'><a href='index.php'>Home</a></li>
|
||||
<li id='news_link'><a href='news.php'>News</a></li>
|
||||
<li id='creditcards_link'><a href='creditcards.php'>Credit Card Information</a></li>
|
||||
<li id='passports_link'><a href='passports.php'>Passports</a></li>
|
||||
<li id='linksandnumbers_link'><a href='linksandnumbers.php'>Links and Numbers</a></li>
|
||||
</ul>
|
||||
42
site/en/admin/news.add.edit.php
Normal file
42
site/en/admin/news.add.edit.php
Normal file
@@ -0,0 +1,42 @@
|
||||
<h2>Administrate FTI: News</h2>
|
||||
<p>
|
||||
<?php if(isset($this->data['editing'])): ?>
|
||||
Edit the news post below and click on "Save news item" at the bottom
|
||||
of the page when you are done.
|
||||
<?php else: ?>
|
||||
Add a news post to the front page by filling out the form below.
|
||||
<?php endif; ?>
|
||||
</p>
|
||||
<p>
|
||||
You make bold and italics text by selecting the text that you want to make
|
||||
bold or italics inside the "News text" box and clicking either the bold (b)
|
||||
button or the italics (i) button on the top right of the news box.
|
||||
</p>
|
||||
<p>
|
||||
Similarly, select any text that you want to make a link and click on
|
||||
the link button. A window will pop up and prompt you for the URL
|
||||
that you would like that text to link to.
|
||||
</p>
|
||||
<div class='admin_summary_box'>
|
||||
<h3><?php echo isset($this->data['editing']) ? 'Edit' : 'Add' ?> News Item</h3>
|
||||
<form action="news.php" method="post" id='news_form' accept-charset="utf-8">
|
||||
<input type="hidden" name="do" value="really<?php echo isset($this->data['newsitem']) ? 'edit' : 'add' ?>" id="do"/>
|
||||
<?php if(isset($this->data['editing'])): ?>
|
||||
<input type='hidden' name='id' value='<?php echo $this->data['newsitem']['id'] ?>' id='id'/>
|
||||
<?php endif; ?>
|
||||
<p class='field'>
|
||||
<label for='title'>Title</label>
|
||||
<input type="text" name="title"
|
||||
value="<?php echo isset($this->data['editing']) ? htmlspecialchars($this->data['newsitem']->title) : '' ?>"
|
||||
id="title" class='long' />
|
||||
</p>
|
||||
<p class='field'>
|
||||
<label for='text'>News text</label>
|
||||
<?php include 'textboxbuttons.php' ?>
|
||||
<textarea id='text' name='text'><?php
|
||||
echo isset($this->data['editing']) ? preg_replace("#<!\[\CDATA\[(.*)]]>#","$1",(string)$this->data['newsitem']->text) : ''
|
||||
?></textarea>
|
||||
</p>
|
||||
<p><input type="submit" value="<?php echo isset($this->data['editing']) ? 'Save' : 'Add' ?> news item"></p>
|
||||
</form>
|
||||
</div>
|
||||
19
site/en/admin/news.delete.php
Normal file
19
site/en/admin/news.delete.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<h2>Administrate FTI: News</h2>
|
||||
<p>
|
||||
Please decide if you really want to delete this item below.
|
||||
</p>
|
||||
<div class='admin_summary_box'>
|
||||
<h3>Delete News Item</h3>
|
||||
<p>
|
||||
Do you really want to delete the news item
|
||||
"<?php echo $this->data['newsitem']->title ?>"?
|
||||
</p>
|
||||
<form action="news.php" method="post" id='news_form' accept-charset="utf-8">
|
||||
<input type="hidden" name="do" value="reallydelete" id="do"/>
|
||||
<input type="hidden" name="id" value="<?php echo $this->data['newsitem']['id'] ?>" id="id"/>
|
||||
<p>
|
||||
<input type="submit" value="Delete news item">
|
||||
<a href='news.php' title="Don't delete news item">No, don't delete news item</a>
|
||||
</p>
|
||||
</form>
|
||||
</div>
|
||||
22
site/en/admin/news.php
Normal file
22
site/en/admin/news.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<h2>Administrate FTI: News</h2>
|
||||
<p>
|
||||
Below is a list of all the news posts on the front page of FTI. You
|
||||
can add a news post, edit current news posts or delete current news posts.
|
||||
</p>
|
||||
<div class='admin_summary_box' id='news_summary'>
|
||||
<h3>All News Items</h3>
|
||||
<p>
|
||||
<a href='/admin/news.php?do=add'>Add news post</a>
|
||||
</p>
|
||||
<table class='summary_table'>
|
||||
<?php for($c = 0; $c < count($this->data['news']); $c++): ?>
|
||||
<tr>
|
||||
<td class='summary_data'><?php echo $this->data['news'][$c]->title ?></td>
|
||||
<td class='summary_actions'>
|
||||
<a href='/admin/news.php?do=edit&id=<?php echo $this->data['news'][$c]['id'] ?>'>Edit</a>
|
||||
<a href='/admin/news.php?do=delete&id=<?php echo $this->data['news'][$c]['id'] ?>'>Delete</a>
|
||||
</td>
|
||||
</tr>
|
||||
<?php endfor; ?>
|
||||
</table>
|
||||
</div>
|
||||
15
site/en/admin/passports.delete.php
Normal file
15
site/en/admin/passports.delete.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<h2>Administrate FTI: Passports</h2>
|
||||
<p>
|
||||
Are you sure you want to delete passport information for
|
||||
<?php echo $this->data['passport']->name ?>?
|
||||
</p>
|
||||
<p>
|
||||
<form action="passports.php" method="post" accept-charset="utf-8">
|
||||
<input type="hidden" name="id" value="<?php echo $this->data['passport']['id'] ?>" id="id"/>
|
||||
<input type="hidden" name="do" value="reallydelete" id="do"/>
|
||||
<p>
|
||||
<input type="submit" value="Yes, delete info"/>
|
||||
No, return to <a href='/admin/passports.php'>passport list</a>.
|
||||
</p>
|
||||
</form>
|
||||
</p>
|
||||
29
site/en/admin/passports.php
Normal file
29
site/en/admin/passports.php
Normal file
@@ -0,0 +1,29 @@
|
||||
<h2>Administrate FTI: Passports</h2>
|
||||
<p>
|
||||
Below is a list of all the passports you have on file. You can view
|
||||
the full passport information, or delete the information.
|
||||
</p>
|
||||
<p>
|
||||
Remember to delete passport information as soon as possible to reduce to
|
||||
risk of information being stolen.
|
||||
</p>
|
||||
<div class='admin_summary_box'>
|
||||
<h3>All Passport Information</h3>
|
||||
<?php if(count($this->data['passports']) > 0): ?>
|
||||
<table class='summary_table'>
|
||||
<?php for($c = 0; $c < count($this->data['passports']); $c++): ?>
|
||||
<tr>
|
||||
<td class='summary_data'>
|
||||
<?php echo $this->data['passports'][$c]->name ?>
|
||||
</td>
|
||||
<td class='summary_actions'>
|
||||
<a href='/admin/passports.php?do=view&id=<?php echo $this->data['passports'][$c]['id'] ?>'>View</a>
|
||||
<a href='/admin/passports.php?do=delete&id=<?php echo $this->data['passports'][$c]['id'] ?>'>Delete</a>
|
||||
</td>
|
||||
</tr>
|
||||
<?php endfor; ?>
|
||||
</table>
|
||||
<?php else: ?>
|
||||
<p>There are currently no passports on file.</p>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
24
site/en/admin/passports.view.php
Normal file
24
site/en/admin/passports.view.php
Normal file
@@ -0,0 +1,24 @@
|
||||
<h2>Administrate FTI: Passports</h2>
|
||||
<p>
|
||||
Below is the passport information for the passport you selected.
|
||||
</p>
|
||||
<p>
|
||||
Return to
|
||||
<a href='/admin/passports.php'>passport list</a>.
|
||||
</p>
|
||||
<p>
|
||||
<a href='/admin/passports.php?do=delete&id=<?php echo $this->data['passport']['id'] ?>'>
|
||||
Delete this passport
|
||||
</a>
|
||||
</p>
|
||||
<div class='admin_summary_box' id='passports_summary'>
|
||||
<h3>Passport Information</h3>
|
||||
<table class='data_table'>
|
||||
<?php foreach($this->data['passport'] as $key => $val): ?>
|
||||
<tr>
|
||||
<td class='data_key'><?php echo ucfirst(str_replace('_',' ',$key)) ?></td>
|
||||
<td class='data_value'><?php echo $val ?></td>
|
||||
</tr>
|
||||
<?php endforeach; ?>
|
||||
</table>
|
||||
</div>
|
||||
5
site/en/admin/textboxbuttons.php
Normal file
5
site/en/admin/textboxbuttons.php
Normal file
@@ -0,0 +1,5 @@
|
||||
<div class='form_button_group'>
|
||||
<a href='javascript:void(0);' id='bold_btn' class='form_button' title='bold'><strong>b</strong></a>
|
||||
<a href='javascript:void(0);' id='italics_btn' class='form_button' title='Italics'><em>i</em></a>
|
||||
<a href='javascript:void(0);' id='link_btn' class='form_button' title='Link'>link</a>
|
||||
</div>
|
||||
130
site/en/bookingrequest.php
Normal file
130
site/en/bookingrequest.php
Normal file
@@ -0,0 +1,130 @@
|
||||
<div class='page-box-center'>
|
||||
<h2>Begin a Booking Request</h2>
|
||||
<p>
|
||||
To submit a booking request to Friendship Tours, simply fill out the
|
||||
form below with your information and click on "Review Information". After
|
||||
reviewing your information, if it is all correct, click on "Submit" to send
|
||||
us your request.
|
||||
</p>
|
||||
<form action="bookingrequest.php" method="post" accept-charset="utf-8" id='bookingrequest_form'>
|
||||
<fieldset>
|
||||
<legend>Travel Information</legend>
|
||||
<p class='field_medium'>
|
||||
Have you booked with us before?
|
||||
<select name='booked_with_us_before' id='booked_with_us_before'>
|
||||
<?php foreach(array('Yes','No') as $option): ?>
|
||||
<option <?php echo ($_POST['booked_with_us_before'] == $option) ? "selected='selected'" : ''; ?>><?php echo $option ?></option>
|
||||
<?php endforeach; ?>
|
||||
</select>
|
||||
</p>
|
||||
<p>
|
||||
<strong>Passengers</strong><br />
|
||||
Please use the names exactly as they appear on the form of ID that
|
||||
you will be using when you travel. The US government requires that the
|
||||
names match exactly. The US government also requires the gender and
|
||||
the birthdate of each passenger, regardless of age.
|
||||
</p>
|
||||
<table class='passengers'>
|
||||
<thead>
|
||||
<tr>
|
||||
<th></th>
|
||||
<th>First name</th>
|
||||
<th>Middle name</th>
|
||||
<th>Last name</th>
|
||||
<th>Gender</th>
|
||||
<th>Birthdate</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php for($idx = 0; $idx < (isset($this->data['info']) ? count($this->data['info']['FirstName']) : 4); $idx++): ?>
|
||||
<tr passengernumber='<?php echo $idx + 1; ?>'>
|
||||
<th>Passenger <?php echo $idx + 1; ?></th>
|
||||
<td>
|
||||
<input type="text" name="FirstName[]" value="<?php echo (isset($this->data['info']) ? $this->data['info']['FirstName'][$idx] : "") ?>"/>
|
||||
</td>
|
||||
<td>
|
||||
<input type="text" name="MiddleName[]" value="<?php echo (isset($this->data['info']) ? $this->data['info']['MiddleName'][$idx] : "") ?>"/>
|
||||
</td>
|
||||
<td>
|
||||
<input type="text" name="LastName[]" value="<?php echo (isset($this->data['info']) ? $this->data['info']['LastName'][$idx] : "") ?>"/>
|
||||
</td>
|
||||
<td>
|
||||
<select name="Gender[]">
|
||||
<?php foreach(array('Male','Female') as $option): ?>
|
||||
<option <?php echo (isset($this->data["info"]) ? $this->data["info"]["Gender"][$idx] : "Male") == $option ? "selected='selected'" : ''; ?>><?php echo $option ?></option>
|
||||
<?php endforeach; ?>
|
||||
</select>
|
||||
</td>
|
||||
<td>
|
||||
<input name="Birthdate[]" type="text" class="date-input" value="<?php echo (isset($this->data['info']) ? $this->data['info']['Birthdate'][$idx] : "") ?>"/>
|
||||
</td>
|
||||
</tr>
|
||||
<?php endfor; ?>
|
||||
</tbody>
|
||||
</table>
|
||||
<button class='passenger-btn' id="AddPassengerBtn">+ Add passenger</button>
|
||||
</fieldset>
|
||||
<fieldset>
|
||||
<legend>Departure Information</legend>
|
||||
<p class='field'>
|
||||
Departure city
|
||||
<input type="text" name="departure_city" value="<?php echo $this->data['info']['departure_city'] ?>" id="departure_city"/>
|
||||
</p>
|
||||
<p class='field'>
|
||||
Alt. departure city
|
||||
<input type="text" name="alt_departure_city" value="<?php echo $this->data['info']['alt_departure_city'] ?>" id="alt_departure_city"/>
|
||||
</p>
|
||||
<p class='field_long'>
|
||||
Departure date or range of dates if flexible
|
||||
<textarea name='departure_dates' id='departure_dates'><?php echo $this->data['info']['departure_dates'] ?></textarea>
|
||||
</p>
|
||||
</fieldset>
|
||||
<fieldset>
|
||||
<legend>Arrival Information</legend>
|
||||
<p class='field'>
|
||||
Arrival city
|
||||
<input type="text" name="arrival_city" value="<?php echo $this->data['info']['arrival_city'] ?>" id="arrival_city"/>
|
||||
</p>
|
||||
<p class='field_long'>
|
||||
Alternate arrival city (or other cities and dates on a multi-city trip)
|
||||
<textarea name='alt_arrival_cities' id='alt_arrival_cities'><?php echo $this->data['info']['alt_arrival_cities'] ?></textarea>
|
||||
</p>
|
||||
</fieldset>
|
||||
<fieldset>
|
||||
<legend>Return Information</legend>
|
||||
<p class='field_long'>
|
||||
Return date (or range of dates if flexible)
|
||||
<textarea name='return_dates' id='return_dates'><?php echo $this->data['info']['return_dates'] ?></textarea>
|
||||
</p>
|
||||
</fieldset>
|
||||
<fieldset>
|
||||
<legend>Miscellaneous Information</legend>
|
||||
<p class='field_long'>
|
||||
Frequent flyer program and number for each traveler
|
||||
<textarea name='frequent_flyer_information' id='frequent_flyer_information'><?php echo $this->data['info']['frequent_flyer_information'] ?></textarea>
|
||||
</p>
|
||||
<p class='field_medium'>
|
||||
Aisle or window seat preferred?
|
||||
<select name='window_or_aisle' id='window_or_aisle'>
|
||||
<?php foreach(array('Aisle','Window') as $option): ?>
|
||||
<option <?php echo ($_POST['window_or_aisle'] == $option) ? "selected='selected'" : ''; ?>><?php echo $option ?></option>
|
||||
<?php endforeach; ?>
|
||||
</select>
|
||||
<span class='field_details'>Bulkhead and exit rows are blocked by the airlines.</span>
|
||||
</p>
|
||||
<p class='field_medium'>
|
||||
Preferred method of payment
|
||||
<select name='preferred_payment_method' id='preferred_payment_method'>
|
||||
<?php foreach(array('Check','Euros','Credit card','Bill mission') as $option): ?>
|
||||
<option <?php echo ($_POST['preferred_payment_method'] == $option) ? "selected='selected'" : ''; ?>><?php echo $option ?></option>
|
||||
<?php endforeach; ?>
|
||||
</select>
|
||||
</p>
|
||||
<p class='field_medium'>
|
||||
E-mail address
|
||||
<input type="text" name="email_address" value="<?php echo $this->data['info']['email_address'] ?>" id="email_address"/>
|
||||
</p>
|
||||
</fieldset>
|
||||
<p><input type="submit" value="Review information" name='review_submit' id='review_submit'/></p>
|
||||
</form>
|
||||
</div>
|
||||
69
site/en/bookingrequest_review.php
Normal file
69
site/en/bookingrequest_review.php
Normal file
@@ -0,0 +1,69 @@
|
||||
<div class='page-box-center'>
|
||||
<h2>Review Your Booking Request Information</h2>
|
||||
<p>
|
||||
Please review the information that you have entered. Click on the "Edit"
|
||||
button below if you need to change anything. Otherwise, if everything is
|
||||
correct, click on the "Submit" button to send us your booking request.
|
||||
</p>
|
||||
<form action="bookingrequest.php" method="post" accept-charset="utf-8">
|
||||
<table class='data_table'>
|
||||
<?php foreach($this->data['info'] as $key => $val): ?>
|
||||
<?php if($key == 'review_submit'): continue; ?>
|
||||
<?php elseif($key == "FirstName"): continue; ?>
|
||||
<?php elseif($key == "MiddleName"): continue; ?>
|
||||
<?php elseif($key == "LastName"): continue; ?>
|
||||
<?php elseif($key == "Gender"): continue; ?>
|
||||
<?php elseif($key == "Birthdate"): continue; ?>
|
||||
<?php endif; ?>
|
||||
<tr>
|
||||
<td><strong><?php echo ucfirst(str_replace('_',' ',$key)) ?></strong></td>
|
||||
<td>
|
||||
<?php echo nl2br($val); ?>
|
||||
<input type="hidden" name="<?php echo $key ?>" value="<?php echo $val ?>" id="<?php echo $key ?>"/>
|
||||
</td>
|
||||
</tr>
|
||||
<?php if($key == "booked_with_us_before"): ?>
|
||||
<tr>
|
||||
<td><strong>Passengers</strong></td>
|
||||
<td>
|
||||
<table class='passengers-review'>
|
||||
<tbody>
|
||||
<?php for($idx = 0; $idx < count($this->data["info"]["FirstName"]); $idx++): ?>
|
||||
<?php if(!empty($this->data["info"]["FirstName"][$idx])): ?>
|
||||
<tr>
|
||||
<td>
|
||||
<?php echo $this->data["info"]["FirstName"][$idx] ?>
|
||||
<input type="hidden" name="FirstName[]" value="<?php echo $this->data["info"]["FirstName"][$idx] ?>" />
|
||||
</td>
|
||||
<td>
|
||||
<?php echo $this->data["info"]["MiddleName"][$idx] ?>
|
||||
<input type="hidden" name="MiddleName[]" value="<?php echo $this->data["info"]["MiddleName"][$idx] ?>" />
|
||||
</td>
|
||||
<td>
|
||||
<?php echo $this->data["info"]["LastName"][$idx] ?>
|
||||
<input type="hidden" name="LastName[]" value="<?php echo $this->data["info"]["LastName"][$idx] ?>" />
|
||||
</td>
|
||||
<td>
|
||||
<?php echo $this->data["info"]["Gender"][$idx] ?>
|
||||
<input type="hidden" name="Gender[]" value="<?php echo $this->data["info"]["Gender"][$idx] ?>" />
|
||||
</td>
|
||||
<td>
|
||||
<?php echo $this->data["info"]["Birthdate"][$idx] ?>
|
||||
<input type="hidden" name="Birthdate[]" value="<?php echo $this->data["info"]["Birthdate"][$idx] ?>" />
|
||||
</td>
|
||||
</tr>
|
||||
<?php endif; ?>
|
||||
<?php endfor; ?>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<?php endif; ?>
|
||||
<?php endforeach; ?>
|
||||
</table>
|
||||
<p>
|
||||
<input type='submit' value='Edit Information' name='edit' id='edit'/>
|
||||
<input type="submit" value="Submit Request →" name='submit' id='submit'/>
|
||||
</p>
|
||||
</form>
|
||||
</div>
|
||||
177
site/en/creditcard.php
Normal file
177
site/en/creditcard.php
Normal file
@@ -0,0 +1,177 @@
|
||||
<div class='page-box-center'>
|
||||
<h2>Send your credit card information</h2>
|
||||
<p>
|
||||
You are now using a secure connection through which your credit card
|
||||
information will be sent. Just to be sure though, make sure the Address
|
||||
box at the top of your browser reads "https://" at the beginning of the
|
||||
address and not "http://". Note the 's' after "http". If there is no 's'
|
||||
after the "http" please go to the
|
||||
<a href='https://fti.powweb.com/creditcard.php' title='Secure credit card form'>secure form</a>.
|
||||
This same page will reload, but it will now be from a secure connection.
|
||||
</p>
|
||||
<p>
|
||||
<strong>Please note:</strong> All fields are required!
|
||||
</p>
|
||||
<form action="creditcard.php" method="post" accept-charset="utf-8" id='creditcard_form'>
|
||||
<fieldset>
|
||||
<legend>Credit Card Information</legend>
|
||||
<p class='field'>
|
||||
Type of Credit Card
|
||||
<select name="card_type" id="card_type">
|
||||
<option selected="selected" value="Visa">Visa</option>
|
||||
<option value="MasterCard">MasterCard</option>
|
||||
<option value="Discover">Discover</option>
|
||||
<option value="American_Express">American Express</option>
|
||||
<option value="Diners_Club">Diner's Club</option>
|
||||
<option value="JCB">JCB</option>
|
||||
<option value="TP">TP</option>
|
||||
</select>
|
||||
</p>
|
||||
<p class='field'>
|
||||
Cardholder's Name
|
||||
<input type="text" name="card_name" id="card_name" />
|
||||
<span class="field_details">Your name as it appears on the card.</span>
|
||||
</p>
|
||||
<p class='field'>
|
||||
Credit Card Number
|
||||
<input type="text" name="card_number" id="card_number" />
|
||||
</p>
|
||||
<p class='field'>
|
||||
Security Code Number
|
||||
<input type="text" size="4" name="card_cvv" id="card_cvv" />
|
||||
<span class='field_details'>Click <a href="javascript:void(0)" id='cvv_help'>here</a> for help with the CVV number.</span>
|
||||
</p>
|
||||
<p class='date'>
|
||||
Expiration Date (mm/yyyy)
|
||||
<span class='date_fields'>
|
||||
<select name="card_expiration_month" id="card_expiration_month">
|
||||
<option>01</option>
|
||||
<option>02</option>
|
||||
<option>03</option>
|
||||
<option>04</option>
|
||||
<option>05</option>
|
||||
<option>06</option>
|
||||
<option>07</option>
|
||||
<option>08</option>
|
||||
<option>09</option>
|
||||
<option>10</option>
|
||||
<option>11</option>
|
||||
<option>12</option>
|
||||
</select>
|
||||
<select name="card_expiration_year" id="card_expiration_year">
|
||||
<?php foreach(range(date('Y'),date('Y')+20) as $year): ?>
|
||||
<option><?php echo $year ?></option>
|
||||
<?php endforeach; ?>
|
||||
</select>
|
||||
</span>
|
||||
</p>
|
||||
</fieldset>
|
||||
<fieldset>
|
||||
<legend>Billing Address</legend>
|
||||
<p class='field'>
|
||||
Full Name
|
||||
<input type="text" size="20" name="billing_full_name" id="billing_full_name" />
|
||||
</p>
|
||||
<p class='field'>
|
||||
Address
|
||||
<input type="text" size="25" name="billing_address_line1" id="billing_address_line1" />
|
||||
</p>
|
||||
<p class='field'>
|
||||
|
||||
<input type="text" size="25" name="billing_address_line2" id="billing_address_line2" />
|
||||
</p>
|
||||
<p class='field'>
|
||||
City
|
||||
<input type="text" size="25" name="billing_city" id="billing_city" />
|
||||
</p>
|
||||
<p class='field'>
|
||||
State/Province/Region
|
||||
<input type="text" size="25" name="billing_state" id="billing_state" />
|
||||
</p>
|
||||
<p class='field'>
|
||||
ZIP/Postal Code
|
||||
<input type="text" size="10" name="billing_postal_code" id="billing_postal_code" />
|
||||
</p>
|
||||
<p class='field'>
|
||||
Country
|
||||
<select name="billing_country" id="billing_country">
|
||||
<option selected="selected"> United States</option><option>Afghanistan</option><option>Albania</option>
|
||||
<option>Algeria</option><option>American Samoa</option><option>Andorra</option><option>Anguilla</option>
|
||||
<option>Antarctica</option><option>Antigua And Barbuda</option><option>Argentina</option>
|
||||
<option>Armenia</option><option>Aruba</option><option>Australia</option>
|
||||
<option>Austria</option><option>Azerbaijan</option><option>Bahamas</option>
|
||||
<option>Bahrain</option><option>Bangladesh</option><option>Barbados</option>
|
||||
<option>Belarus</option><option>Belgium</option><option>Belize</option>
|
||||
<option>Benin</option><option>Bermuda</option><option>Bhutan</option>
|
||||
<option>Bolivia</option><option>Bosnia and Herzegovina</option><option>Botswana</option>
|
||||
<option>Bouvet Island</option><option>Brazil</option><option>British Indian Ocean Territory</option>
|
||||
<option>Brunei Darussalam</option><option>Bulgaria</option><option>Burkina Faso</option>
|
||||
<option>Burundi</option><option>Cambodia</option><option>Cameroon</option><option>Canada</option>
|
||||
<option>Cape Verde</option><option>Cayman Islands</option><option>Central African Republic</option>
|
||||
<option>Chad</option><option>Chile</option><option>China</option><option>Christmas Island</option>
|
||||
<option>Cocos (Keeling) Islands</option><option>Colombia</option><option>Comoros</option>
|
||||
<option>Congo</option><option>Congo, the Democratic Republic of the</option><option>Cook Islands</option>
|
||||
<option>Costa Rica</option><option>Cote d'Ivoire</option><option>Croatia</option><option>Cyprus</option>
|
||||
<option>Czech Republic</option><option>Denmark</option><option>Djibouti</option><option>Dominica</option>
|
||||
<option>Dominican Republic</option><option>East Timor</option><option>Ecuador</option><option>Egypt</option>
|
||||
<option>El Salvador</option><option>England</option><option>Equatorial Guinea</option><option>Eritrea</option>
|
||||
<option>Espana</option><option>Estonia</option><option>Ethiopia</option><option>Falkland Islands</option>
|
||||
<option>Faroe Islands</option><option>Fiji</option><option>Finland</option><option>France</option>
|
||||
<option>French Guiana</option><option>French Polynesia</option><option>French Southern Territories</option>
|
||||
<option>Gabon</option><option>Gambia</option><option>Georgia</option><option>Germany</option>
|
||||
<option>Ghana</option><option>Gibraltar</option><option>Great Britain</option><option>Greece</option>
|
||||
<option>Greenland</option><option>Grenada</option><option>Guadeloupe</option><option>Guam</option>
|
||||
<option>Guatemala</option><option>Guinea</option><option>Guinea-Bissau</option><option>Guyana</option>
|
||||
<option>Haiti</option><option>Heard and Mc Donald Islands</option><option>Honduras</option>
|
||||
<option>Hong Kong</option><option>Hungary</option><option>Iceland</option><option>India</option>
|
||||
<option>Indonesia</option><option>Ireland</option><option>Israel</option><option>Italy</option>
|
||||
<option>Jamaica</option><option>Japan</option><option>Jordan</option><option>Kazakhstan</option>
|
||||
<option>Kenya</option><option>Kiribati</option><option>Korea, Republic of</option><option>Korea (South)</option>
|
||||
<option>Kuwait</option><option>Kyrgyzstan</option><option>Lao People's Democratic Republic</option>
|
||||
<option>Latvia</option><option>Lebanon</option><option>Lesotho</option><option>Liberia</option>
|
||||
<option>Liechtenstein</option><option>Lithuania</option><option>Luxembourg</option><option>Macau</option>
|
||||
<option>Macedonia</option><option>Madagascar</option><option>Malawi</option><option>Malaysia</option>
|
||||
<option>Maldives</option><option>Mali</option><option>Malta</option><option>Marshall Islands</option>
|
||||
<option>Martinique</option><option>Mauritania</option><option>Mauritius</option><option>Mayotte</option>
|
||||
<option>Mexico</option><option>Micronesia, Federated States of</option><option>Moldova, Republic of</option>
|
||||
<option>Monaco</option><option>Mongolia</option><option>Montserrat</option><option>Morocco</option>
|
||||
<option>Mozambique</option><option>Namibia</option><option>Nauru</option><option>Nepal</option>
|
||||
<option>Netherlands</option><option>Netherlands Antilles</option><option>New Caledonia</option>
|
||||
<option>New Zealand</option><option>Nicaragua</option><option>Niger</option><option>Nigeria</option>
|
||||
<option>Niue</option><option>Norfolk Island</option><option>Northern Ireland</option>
|
||||
<option>Northern Mariana Islands</option><option>Norway</option><option>Oman</option>
|
||||
<option>Pakistan</option><option>Palau</option><option>Panama</option><option>Papua New Guinea</option>
|
||||
<option>Paraguay</option><option>Peru</option><option>Philippines</option><option>Pitcairn</option>
|
||||
<option>Poland</option><option>Portugal</option><option>Puerto Rico</option><option>Qatar</option>
|
||||
<option>Reunion</option><option>Romania</option><option>Russia</option><option>Russian Federation</option>
|
||||
<option>Rwanda</option><option>Saint Kitts and Nevis</option><option>Saint Lucia</option>
|
||||
<option>Saint Vincent and the Grenadines</option><option>Samoa (Independent)</option>
|
||||
<option>San Marino</option><option>Sao Tome and Principe</option><option>Saudi Arabia</option>
|
||||
<option>Scotland</option><option>Senegal</option><option>Seychelles</option><option>Sierra Leone</option>
|
||||
<option>Singapore</option><option>Slovakia</option><option>Slovenia</option><option>Solomon Islands</option>
|
||||
<option>Somalia</option><option>South Africa</option><option>South Georgia and the South Sandwich Islands</option>
|
||||
<option>South Korea</option><option>Spain</option><option>Sri Lanka</option><option>St. Helena</option>
|
||||
<option>St. Pierre and Miquelon</option><option>Suriname</option><option>Svalbard and Jan Mayen Islands</option>
|
||||
<option>Swaziland</option><option>Sweden</option><option>Switzerland</option><option>Taiwan</option>
|
||||
<option>Tajikistan</option><option>Tanzania</option><option>Thailand</option><option>Togo</option>
|
||||
<option>Tokelau</option><option>Tonga</option><option>Trinidad</option><option>Trinidad and Tobago</option>
|
||||
<option>Tunisia</option><option>Turkey</option><option>Turkmenistan</option><option>Turks and Caicos Islands</option>
|
||||
<option>Tuvalu</option><option>Uganda</option><option>Ukraine</option><option>United Arab Emirates</option>
|
||||
<option>United Kingdom</option><option>United States</option><option>United States Minor Outlying Islands</option>
|
||||
<option>Uruguay</option><option>USA</option><option>Uzbekistan</option><option>Vanuatu</option>
|
||||
<option>Vatican City State (Holy See)</option><option>Venezuela</option><option>Viet Nam</option>
|
||||
<option>Virgin Islands (British)</option><option>Virgin Islands (U.S.)</option><option>Wales</option>
|
||||
<option>Wallis and Futuna Islands</option><option>Western Sahara</option><option>Yemen</option>
|
||||
<option>Yugoslavia</option><option>Zambia</option><option>Zimbabwe</option>
|
||||
</select>
|
||||
</p>
|
||||
<p class='field'>
|
||||
E-mail Address
|
||||
<input type="text" size="25" name="billing_email" id="billing_email" />
|
||||
</p>
|
||||
</fieldset>
|
||||
<p>
|
||||
<input type="submit" value="Submit Information">
|
||||
</p>
|
||||
</form>
|
||||
</div>
|
||||
10
site/en/footer.php
Normal file
10
site/en/footer.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<p>
|
||||
Copyright: Friendship Tours International<br />
|
||||
Site dedicated in memory of Paul E. Nielsen<br />
|
||||
Site designed and maintained by <a href='http://benramey.com' title='Ben Ramey'>Ben Ramey</a>
|
||||
</p>
|
||||
|
||||
<form action="http://www.arccorp.com/join/arc_check.jsp" method="post">
|
||||
<input type="hidden" id="checkNumber" name="checkNumber" value="24590171" />
|
||||
<input type="image" src="http://www.arccorp.com/img/accBlk.gif" alt="Click to Verify" title="Click to verify" />
|
||||
</form>
|
||||
6
site/en/header.php
Normal file
6
site/en/header.php
Normal file
@@ -0,0 +1,6 @@
|
||||
<a id='top'></a>
|
||||
<h1>
|
||||
<a href='index.php' title='Friendship Tours International'>
|
||||
Friendship Tours International
|
||||
</a>
|
||||
</h1>
|
||||
8
site/en/history.php
Normal file
8
site/en/history.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<div class='page-box-center'>
|
||||
<h2>History of Friendship Tours International</h2>
|
||||
<p>Friendship Tours came into existence in 1979 as a result of brainstorming between a missionary residing in Vienna, Austria and a businessman in Holland, Michigan, USA. The missionary was travelling frequently into then-communist Eastern Europe. He was not able to state his true reasons for his frequent travels (to disciple and train Christian leaders in those countries). He needed a better "public" reason or "cover" for his travels than being a teacher. The two men came up with the idea of a tour company. This company would organize tours that could tour various countries in Eastern Europe, thus bringing tourists and much-needed western currency to these countries. Friendship Tours was incorporated in the state of Michigan in 1979. This strategy worked well, actually allowing several missionaries to use the company to allow them greater access to travel throughout Eastern Europe.</p>
|
||||
<p>In 1982, John Nielsen moved to Vienna, Austria to work in the mission office. Among other things, one of his responsibilities was to continue to allow Friendship Tours (FTI) to be a viable entity for access by missionaries to Eastern Europe. However, John also wanted to see FTI become a vehicle to help missionaries with their own travel arrangements. John vigorously pursued the least expensive flights, whether for those traveling back to the USA for home assignments, or for ministry travel within Europe. Initially this service was provided only to missionaries employed by the mission board John served with. By 1988, this expanded to serving a handful of missions. By 1992, word had spread through the mission grapevine of John's knack for tracking down economical flights. Since then, John has been working full-time to help missionaries with their travel needs.</p>
|
||||
<p>In 1998, John relocated from Vienna to Brainerd, MN. This has allowed John to research and offer even greater travel bargains to missionaries, being able to compare airfares he can obtain on either side of the Atlantic, then purchasing the tickets wherever is most economical.</p>
|
||||
<p>FTI currently serves over 300 missionaries serving with over 30 mission boards from its base in Brainerd, MN. The original reason for the formation of FTI is actually still being used. No less than two missionaries are continuing to gain access to countries closed to traditional missionaries through association with the company. Due to the sensitive nature of this ministry, the locations can not be mentioned.</p>
|
||||
<p>Thank you for your interest in this ministry to missionaries.</p>
|
||||
</div>
|
||||
58
site/en/home.php
Normal file
58
site/en/home.php
Normal file
@@ -0,0 +1,58 @@
|
||||
<p class='intro'>
|
||||
Thank you for visiting our web site. Friendship Tours International (FTI)
|
||||
is a travel agency that specializes in travel planning for Christian
|
||||
organizations and individuals. We strive to give you the best possible
|
||||
fares for your trip, as we realize the budget constraints of many non-profit
|
||||
organizations. Please take a moment to browse our site and feel free to send
|
||||
us your comments.
|
||||
</p>
|
||||
|
||||
<div id='news-jumper'>
|
||||
<select id='news-jumper-select'>
|
||||
<option value=''>Jump to news post</option>
|
||||
<?php for($c = count($this->data['news']) - 1; $c >= 0; $c--): ?>
|
||||
<option value='news_<?php echo $this->data['news'][$c]['id'] ?>'><?php echo $this->data['news'][$c]->title ?></option>
|
||||
<?php endfor; ?>
|
||||
</select>
|
||||
</div>
|
||||
<div id="news" class='page-box-left'>
|
||||
<h2>News Updates</h2>
|
||||
<?php for($c = count($this->data['news']) - 1; $c >= 0; $c--): ?>
|
||||
<div class="news-item">
|
||||
<h3 id='news_<?php echo $this->data['news'][$c]['id'] ?>'><?php echo $this->data['news'][$c]->title ?></h3>
|
||||
<?php if(count($this->data['news']) > $c): ?>
|
||||
<p class='top-link'>- <a href='#top' title='Go to top of page'>top</a> -</p>
|
||||
<?php endif; ?>
|
||||
<?php echo nl2br(xml_nl_to_paragraph(xml_parse_bbcode((string)$this->data['news'][$c]->text))) ?>
|
||||
</div>
|
||||
<?php endfor; ?>
|
||||
</div>
|
||||
|
||||
<div id="contact-info" class='page-box-right'>
|
||||
<h2>Contact Information</h2>
|
||||
<p>
|
||||
<strong>E-mail:</strong><br />
|
||||
<a href='mailto:travel@friendshiptours.org' title='E-mail Friendship Tours'>
|
||||
travel@friendshiptours.org
|
||||
</a>
|
||||
</p>
|
||||
<hr />
|
||||
<p>
|
||||
<strong>Telephone Number:</strong><br />
|
||||
(218) 824-8000
|
||||
</p>
|
||||
<hr />
|
||||
<p>
|
||||
<strong>Fax Number:</strong><br />
|
||||
(218) 824-8001
|
||||
</p>
|
||||
<hr />
|
||||
<p>
|
||||
<strong>Address:</strong><br />
|
||||
Friendship Tours International<br />
|
||||
John Nielsen<br />
|
||||
2029 S. 6th Street Ste 106<br />
|
||||
Brainerd, MN 56401<br />
|
||||
USA<br />
|
||||
</p>
|
||||
</div>
|
||||
27
site/en/itinerary_beforecontinuing.php
Normal file
27
site/en/itinerary_beforecontinuing.php
Normal file
@@ -0,0 +1,27 @@
|
||||
<div class='page-box-center'>
|
||||
<h2>Before you continue!</h2>
|
||||
<p>In order to view your itinerary online, you will need to enter the following information:</p>
|
||||
<ul>
|
||||
<?php if($this->data['itinerary_type'] != 'noinstructions'): ?>
|
||||
<li>
|
||||
Your reservation code (this is a combination of 5 or 6 letters and numbers).
|
||||
Use the special code that John gave you, and NOT the code that is found toward
|
||||
the top of your itinerary either on the printed itinerary you received with
|
||||
your tickets or in an E-mail that was sent to you.
|
||||
</li>
|
||||
<li>
|
||||
Your last name
|
||||
</li>
|
||||
<?php else: ?>
|
||||
<li>
|
||||
Your reservation code (this is a combination of 5 or 6 letters and numbers and can be found toward the top of your itinerary either on
|
||||
the printed itinerary you received with your tickets or in an EMail that was sent to you).
|
||||
</li>
|
||||
<li>
|
||||
Your last name
|
||||
</li>
|
||||
<?php endif; ?>
|
||||
</ul>
|
||||
<p>Thank you! Please click on the link below to continue to view your itinerary.</p>
|
||||
<p><a href="viewyouritinerary.php?type=<?php echo $this->data['itinerary_type'] ?>">Continue to view itinerary</a></p>
|
||||
</div>
|
||||
25
site/en/linksandnumbers.php
Normal file
25
site/en/linksandnumbers.php
Normal file
@@ -0,0 +1,25 @@
|
||||
<div class='page-box-center'>
|
||||
<h2>Links and Numbers</h2>
|
||||
<p>Below are links to other websites and other important information.</p>
|
||||
<ul class='linksandnumbers-list'>
|
||||
<li>
|
||||
<a href="passportinfo.php">Your passport and birthdate information</a>
|
||||
</li>
|
||||
<?php foreach($this->data['items'] as $item): ?>
|
||||
<li>
|
||||
<?php if((string)$item->type == 'page'): ?>
|
||||
<a href="linksandnumbers.php?id=<?php echo $item['id'] ?>">
|
||||
<?php echo $item->title ?>
|
||||
</a>
|
||||
<?php elseif((string)$item->type == 'external_link'): ?>
|
||||
<a href="<?php echo $item->text ?>">
|
||||
<?php echo $item->title ?>
|
||||
</a>
|
||||
<?php endif; ?>
|
||||
<?php if((string)$item->subtitle !== ''): ?>
|
||||
<em>- <?php echo $item->subtitle ?></em>
|
||||
<?php endif; ?>
|
||||
</li>
|
||||
<?php endforeach; ?>
|
||||
</ul>
|
||||
</div>
|
||||
4
site/en/linksandnumbers.subpage.php
Normal file
4
site/en/linksandnumbers.subpage.php
Normal file
@@ -0,0 +1,4 @@
|
||||
<div class='page-box-center'>
|
||||
<h2><?php echo $this->data['item']->title ?></h2>
|
||||
<?php echo nl2br(xml_nl_to_paragraph(xml_parse_bbcode((string)$this->data['item']->text))) ?>
|
||||
</div>
|
||||
10
site/en/menu.php
Normal file
10
site/en/menu.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<ul id='nav'>
|
||||
<li id='home_link'><a href='index.php' title='Home'>Home</a></li>
|
||||
<li id='history_link'><a href='history.php' title='History of FTI'>History of FTI</a></li>
|
||||
<li id='linksandnumbers_link'><a href='linksandnumbers.php' title='Links and numbers'>Links and Numbers</a></li>
|
||||
</ul>
|
||||
<ul id='nav2'>
|
||||
<li id='viewyouritinerary_link'><a href='viewyouritinerary.php' title='View your itinerary'>View Your Itinerary</a></li>
|
||||
<li id='creditcard_link'><a href='https://fti.powweb.com/creditcard.php' title='Use your credit card'>Use Your Credit Card</a></li>
|
||||
<li id='sendemail_link'><a href='mailto:travel@friendshiptours.org' title='Send us and e-mail'>Send Us an E-mail</a></li>
|
||||
</ul>
|
||||
37
site/en/passportinfo.php
Normal file
37
site/en/passportinfo.php
Normal file
@@ -0,0 +1,37 @@
|
||||
<div class='page-box-center'>
|
||||
<h2>Passport and birthdate information</h2>
|
||||
<form action="passportinfo.php" method="post" accept-charset="utf-8" id='passportinfo_form'>
|
||||
<p>Please fill out each field.</p>
|
||||
<fieldset class='person'>
|
||||
<legend>Passport Information</legend>
|
||||
<p class='field'>
|
||||
Name as on passport
|
||||
<input type="text" size="30" name="passport_name[]" id="passport_name" />
|
||||
</p>
|
||||
<p class='field'>
|
||||
Birthdate (mm/dd/yyyy)
|
||||
<input type="text" size="10" name="passport_birthdate[]" id="birthdate" />
|
||||
</p>
|
||||
<p class='field'>
|
||||
Passport number
|
||||
<input type="text" size="30" name="passport_number[]" id="passport_number" />
|
||||
</p>
|
||||
<p class='field'>
|
||||
Passport expiration date
|
||||
<input type="text" size="10" name="passport_expirationdate[]" id="passport_expirationdate" />
|
||||
</p>
|
||||
<p class='field'>
|
||||
Country of passport issuance
|
||||
<input type="text" size="30" name="passport_country[]" id="passport_country" />
|
||||
</p>
|
||||
<p><input type="button" name="delete_person" value="- Delete person" class='delete_person' disabled='disabled'/></p>
|
||||
</fieldset>
|
||||
<p>
|
||||
<input type='button' id='add_person' name='add_person' value='+ Add a person'/>
|
||||
</p>
|
||||
<p class='field'>
|
||||
|
||||
<input type="submit" value="Submit Information"/>
|
||||
</p>
|
||||
</form>
|
||||
</div>
|
||||
22
site/en/viewyouritinerary.php
Normal file
22
site/en/viewyouritinerary.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<div class='page-box-center'>
|
||||
<h2>View Your Itinerary</h2>
|
||||
<p>
|
||||
If John has not given you any special instructions for viewing your itinerary
|
||||
then click <a href="itinerary_beforecontinuing.php?type=noinstructions">here</a>.
|
||||
</p>
|
||||
<p>Otherwise,</p>
|
||||
<ul>
|
||||
<li>
|
||||
If John mentioned Worldspan, click
|
||||
<a href='itinerary_beforecontinuing.php?type=worldspan'>here</a>.
|
||||
</li>
|
||||
<li>
|
||||
If John mentioned Sabre, click
|
||||
<a href='itinerary_beforecontinuing.php?type=sabre'>here</a>.
|
||||
</li>
|
||||
<li>
|
||||
If John mentioned Amadeus, click
|
||||
<a href='itinerary_beforecontinuing.php?type=amadeus'>here</a>.
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
Reference in New Issue
Block a user