54 lines
2.1 KiB
PHP
54 lines
2.1 KiB
PHP
<?php
|
|
if(!defined('OSTSCPINC') || !is_object($thisuser)) die('Kwaheri');
|
|
|
|
?>
|
|
<div class="msg">Mein Profil</div>
|
|
<table width="100%" border="0" cellspacing=0 cellpadding=2>
|
|
<form action="profile.php" method="post">
|
|
<input type="hidden" name="t" value="info">
|
|
<input type="hidden" name="id" value="<?=$thisuser->getId()?>">
|
|
<tr>
|
|
<td width="110"><b>Nutzername:</b></td>
|
|
<td> <?=$thisuser->getUserName()?></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Vorname:</td>
|
|
<td><input type="text" name="firstname" value="<?=$rep['firstname']?>">
|
|
<font class="error">* <?=$errors['firstname']?></font></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Nachname:</td>
|
|
<td><input type="text" name="lastname" value="<?=$rep['lastname']?>">
|
|
<font class="error">* <?=$errors['lastname']?></font></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Email-Adresse:</td>
|
|
<td><input type="text" name="email" size=25 value="<?=$rep['email']?>">
|
|
<font class="error">* <?=$errors['email']?></font></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Telefon:</td>
|
|
<td>
|
|
<input type="text" name="phone" value="<?=$rep['phone']?>" ><font class="error"> <?=$errors['phone']?></font> Durchwahl
|
|
<input type="text" name="phone_ext" size=6 value="<?=$rep['phone_ext']?>" >
|
|
<font class="error"> <?=$errors['phone_ext']?></font>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Mobil:</td>
|
|
<td><input type="text" name="mobile" value="<?=$rep['mobile']?>" >
|
|
<font class="error"> <?=$errors['mobile']?></font></td>
|
|
</tr>
|
|
<tr>
|
|
<td valign="top">Signatur:</td>
|
|
<td><textarea name="signature" cols="21" rows="5" style="width: 60%;"><?=$rep['signature']?></textarea></td>
|
|
</tr>
|
|
<tr><td> </td>
|
|
<td> <br/>
|
|
<input class="button" type="submit" name="submit" value="Speichern">
|
|
<input class="button" type="reset" name="reset" value="Zurücksetzen">
|
|
<input class="button" type="button" name="cancel" value="Abbrechen" onClick='window.location.href="index.php"'>
|
|
</td>
|
|
</tr>
|
|
</form>
|
|
</table>
|