Jump to content

registration_mainform.tpl error


david thompson

Recommended Posts

Hi, i eddited it with.

<h2 title="BMI Baby Virtual Airlines">Join the BMI Virtual Team!</h2>

<form method="POST" action="apply1.php" >

<p><strong>Join our Team! We will get back to you within 24 hours.</strong></p>

<table>

<tr>

<td>

First and Last Name*:

</td><td>

<input type="text" name="name" size="25" /> <br>

</td>

<tr>

<td>

Date of Birth*:

</td><td>

<input type="text" name="DoB" size="25" /> <br>

</td>

<tr>

<td>

Select your preferred Network:</td><td>

<select name="network">

<option class="style2" value="VATSIM" selected>VATSIM</option>

<option class="style2" value="Virtual Skies">Ivao</option>

</select><br>

</td></tr>

<tr>

<td>

Network ID (Vatsim ID):</td><td>

<input type="text" maxlength="7" name="networkid" size="6" /> <br>

</td>

</tr>

<tr>

<td>

<tr>

<td>

Select your preferred Aircraft:</td><td>

<select name="Aircraft">

<option class="style2" value="B733" selected>B733</option>

<option class="style2" value="B735" selected>B735</option>

</select><br>

</td></tr>

<tr>

<td>

Select Password*:

</td><td>

<input type="text" name="password" size="25" /> <br>

</td>

</tr>

<tr>

<td>

Confirm Password* :

</td><td>

<input type="text" name="pass confirm" size="25" /> <br>

</td>

</tr>

<tr>

<td>

Primary E-Mail Address:</td><td>

<input type="text" name="email" size="25" /> <br>

</td>

</tr>

<tr>

<td>

Confirm Email* :

</td><td>

<input type="text" name="email confirm" size="25" /> <br>

</td>

</tr>

<tr>

<td>

Supporting notes :</td><td>

<textarea name="notes" rows="7" cols="20">

</textarea></td>

</tr><tr>

<td>

<tr>

<td>

How did you hear about us?:</td><td>

<select name="How did you find us">

<option class="style2" value="Saw us Flying" selected>Saw us Flying</option>

<option class="style2" value="Friend">Friend</option>

<option class="style2" value="Search Engine">Search Engine</option>

<option class="style2" value="Other">Other</option>

</select><br>

</td></tr>

<td>

<tr>

<td>

<p>By submitting this application, you acknowledge the following;</p>

<li>You are over the age of 13, and have a basic knowledge of virtual aviation.</li>

<li>You are bound by the rules displayed on our website.</li>

<li>You understand and accept the Terms & Conditions of BMI Baby Virtual.</li>

</td></tr>

<td>

<input type="submit" value="Send Application" name="B1" align="center" /> <br>

</td>

</table>

</form>

But people or getting this error message when they hit SEND APPLICATION .... An Error Was Encountered

The module "APPLY1.PHP" doesn't exist!

anyone any ideas?

regards

Link to comment
Share on other sites

Hi, i eddited it with.

<snipped for brevity>

But people or getting this error message when they hit SEND APPLICATION .... An Error Was Encountered

The module "APPLY1.PHP" doesn't exist!

anyone any ideas?

regards

Well, I looked throughout the modules folder, and I don't see that module anywhere. Did you somehow change that as well?

Link to comment
Share on other sites

You seem to be missing the recaptcha:

<dt>reCaptcha</dt>
<dd>
	<?php
		echo recaptcha_get_html(Config::Get('RECAPTCHA_PUBLIC_KEY'), $captcha_error);
	?>
</dd>

<dt></dt>

If you lost your original, Here is my whole code for that page.

<h3>Registration</h3>
<p>Welcome to the registration form for <?php echo SITE_NAME; ?>. After you register, you will be notified by a staff member about your membership.</p>
<form method="post" action="<?php echo url('/registration');?>">
<dl>
<dt>First Name: *</dt>
<dd><input type="text" name="firstname" value="<?php echo Vars::POST('firstname');?>" />
	<?php
		if($firstname_error == true)
			echo '<p class="error">Please enter your first name</p>';
	?>
</dd>

<dt>Last Name: *</dt>
<dd><input type="text" name="lastname" value="<?php echo Vars::POST('lastname');?>" />
	<?php
		if($lastname_error == true)
			echo '<p class="error">Please enter your last name</p>';
	?>
</dd>

<dt>Email Address: *</dt>
<dd><input type="text" name="email" value="<?php echo Vars::POST('email');?>" />
	<?php
		if($email_error == true)
			echo '<p class="error">Please enter your email address</p>';
	?>
</dd>

<dt>Select Airline: *</dt>
<dd>
	<select name="code" id="code">
	<?php
	foreach($allairlines as $airline)
	{
		echo '<option value="'.$airline->code.'">'.$airline->code.' - '.$airline->name.'</option>';
	}
	?>
	</select>
</dd>

<dt>Hub: *</dt>
<dd>
	<select name="hub" id="hub">
	<?php
	foreach($allhubs as $hub)
	{
		echo '<option value="'.$hub->icao.'">'.$hub->icao.' - ' . $hub->name .'</option>';
	}
	?>
	</select>
</dd>

<dt>Location: *</dt>
<dd><select name="location">
	<?php
		foreach($countries as $countryCode=>$countryName)
		{
			if(Vars::POST('location') == $countryCode)
				$sel = 'selected="selected"';
			else	
				$sel = '';

			echo '<option value="'.$countryCode.'" '.$sel.'>'.$countryName.'</option>';
		}
	?>
	</select>
	<?php
		if($location_error == true)
			echo '<p class="error">Please enter your location</p>';
	?>
</dd>

<dt>Password: *</dt>
<dd><input id="password" type="password" name="password1" value="" /></dd>

<dt>Enter your password again: *</dt>
<dd><input type="password" name="password2" value="" />
	<?php
		if($password_error != '')
			echo '<p class="error">'.$password_error.'</p>';
	?>
</dd>

<?php

//Put this in a seperate template. Shows the Custom Fields for registration
Template::Show('registration_customfields.tpl');

?>

<dt>reCaptcha</dt>
<dd>
	<?php
		echo recaptcha_get_html(Config::Get('RECAPTCHA_PUBLIC_KEY'), $captcha_error);
	?>
</dd>

<dt></dt>
<dd><p>By clicking register, you're agreeing to the terms and conditions</p></dd>
<dt></dt>
<dd><input type="submit" name="submit" value="Register!" /></dd>
</dl>
</form>

Link to comment
Share on other sites

Many thanks, Jeff, its back to the original one, i was trying to make my registration form look like this ... http://www.thomascookvirtual.org/apply.php

or else like this one http://euroscotva.co.uk/index.php/pages/registration1 with the page before the registration form on http://euroscotva.co.uk/index.php/registration.

Anyone have the proper coding?

Regards

Link to comment
Share on other sites

Okay. You have many many options when linking to your Registration page.

Many thanks, Jeff, its back to the original one, I was trying to make my registration form look like this ... http://www.thomascookvirtual.org/apply.php

This can be done while including the ReCaptcha. The ReCaptcha is a security measure to prevent spammers from repeatingly clicking the submit button.

I once made a page similar to that one just a couple weeks back. All that it includes is you opening the Admin Center and creating a new "Page". Name it something like "Terms" or "Application" (something along those lines) and then place the links you want that page to go to. In that case, he has 2 links, one to go to Main and another one that goes to the Registration page. You can also have just DECLINE and ACCEPT. If they decline, have it link to Google or something, and if they accept, have it link to the Registration.tpl.

Link to comment
Share on other sites

I once made a page similar to that one just a couple weeks back. All that it includes is you opening the Admin Center and creating a new "Page". Name it something like "Terms" or "Application" (something along those lines) and then place the links you want that page to go to. In that case, he has 2 links, one to go to Main and another one that goes to the Registration page. You can also have just DECLINE and ACCEPT. If they decline, have it link to Google or something, and if they accept, have it link to the Registration.tpl.

Page created, where do i place the page link, so that page comes before the main registration page.

regards

Link to comment
Share on other sites

If that is the crystal w/dropdown, open www/public_html/core/templates/crystal/layout.tpl

Find the registration link and replace it with

<li><a href="<?php echo url('/pages/yourpage'); ?>">Your Page</a></li>

You might need to do it in the /public_html/core/templates/core_navigation.tpl as well

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...