Jump to content

damien82

Members
  • Posts

    64
  • Joined

  • Last visited

Posts posted by damien82

  1. Hello everybody.

    I have a little problem.

    I changed the latitude and longtitude in the local.config of the map,but th map map always shows the same place.

    I would like to center it for frankfurt(germany),but it still shows the united states.

    Regards

  2. Hmm i tried it with different names

    The password ist strong enoughbut it still doesnt work...

    Here is my registration tpl

    <h3>Enregistrement</h3>

    <p>Bienvenue sur la page d inscription d <?php echo SITE_NAME; ?>. Apres votre Inscription,un email vous sera envoye par un membre de notre Staff pour confirmer l Inscription.</p>

    <form method="post" action="<?php echo url('/registration');?>">

    <dl>

    <dt>Prenom: *</dt>

    <dd><input type="text" name="Prenom" value="<?php echo Vars::POST('Prenom');?>" />

    <?php

    if($firstname_error == true)

    echo '<p class="error">Please enter your first name</p>';

    ?>

    </dd>

    <dt>Nom de famille: *</dt>

    <dd><input type="text" name="Nom de famille" value="<?php echo Vars::POST('Nom de famille');?>" />

    <?php

    if($lastname_error == true)

    echo '<p class="error">Please enter your last name</p>';

    ?>

    </dd>

    <dt>Adresse email: *</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>Compagnie: *</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>Pays: *</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>Mot de passe: *</dt>

    <dd><input id="Mot de passe" type="Mot de passe" name="password1" value="" /></dd>

    <dt>Veuillez a nouveau entrer votre mot de passe: *</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> En appuyant sur register,vous etes d accord avec les conditions d utilisation</p></dd>

    <dt></dt>

    <dd><input type="submit" name="submit" value="Register!" /></dd>

    </dl>

    </form>

  3. What i will say is that when im trying to register as a new Pilot,to test the registration form, I put my first name my last name email adresse password etc,i give in the code and when i push on register,it shows me that i must put in my first and last name.

    So like this

    Prenom: *

    Please enter your first name

    Sry but my english isnt so good :lol:

  4. Hello evrybody.

    I would like to ask if it is possible to stop the flight log with kacars when the Pilot shutts down the engine,and not when the parkring break are set.

    Last time i had 8 planes in front of me,and i putted the parking brakes on,and the flight log stopped immediately.

    I looked in the kacars_free.php but cant find it

    Sorry guys it is xacars lol so forget it :-(

    Regards

×
×
  • Create New...