%PDF- %PDF-
| Direktori : /home/cargonizer/public_html/includes/ |
| Current File : /home/cargonizer/public_html/includes/userForm.php |
<?php if($_SESSION['error']['register']) { echo $_SESSION['error']['register']; unset($_SESSION['error']['register']); } ?>
<form method="post" id="userForm">
<table cellpadding="4" cellspacing="4">
<tr>
<td><?php echo lang('Kullanıcı Adı'); ?></td>
<td><input type="text" name="k[username]" id="username" class="validate[required,custom[email]]" /></td>
</tr>
<tr>
<td><?php echo lang('Şifre'); ?></td>
<td><input type="text" name="k[password]" id="password" class="validate[required]" /></td>
</tr>
<tr>
<td><?php echo lang('Adı Soyadı'); ?></td>
<td><input type="text" name="k[name]" id="name" class="validate[required]" /></td>
</tr>
<tr>
<td><?php echo lang('Telefon'); ?></td>
<td><input type="text" name="k[phone]" id="phone" class="validate[required]" /></td>
</tr>
<tr>
<td><?php echo lang('Şehir'); ?></td>
<td><select name="k[city]" id="city">
<?php
foreach($City as $key => $ct) {
echo '<option value="'.$key.'">'.$ct.'</option>';
}
?>
</select></td>
</tr>
<tr>
<td colspan="2"><input type="hidden" name="action" value="register" /><input name="saveform" value="<?php echo lang('Gönder'); ?>" type="submit"></td>
</tr>
</table>
</form>