28 lines
841 B
HTML
28 lines
841 B
HTML
<div class="divContent">
|
|
<h2>Person</h2>
|
|
<div class="divLine"> </div>
|
|
<table cellpadding="0" cellspacing="0">
|
|
<tr>
|
|
<th>Name</th>
|
|
<td><input type="text" name="personname" value="{NAME}" class="formText" maxlength="100" onChange="unsave()" /></td>
|
|
</tr>
|
|
<tr>
|
|
<th>Aufgabe</th>
|
|
<td><input type="text" name="job" value="{JOB}" class="formText" maxlength="100" onChange="unsave()" /></td>
|
|
</tr>
|
|
<tr>
|
|
<th>E-Mail Adresse</th>
|
|
<td><input type="text" name="mail" value="{MAIL}" class="formText"maxlength="100" onChange="unsave()" /></td>
|
|
</tr>
|
|
<tr>
|
|
<th>Foto</th>
|
|
<td>
|
|
<!-- BEGINBLOCK THUMB -->
|
|
<img src="{THUMB}" alt="{NAME}" /><br />
|
|
<!-- ENDBLOCK THUMB -->
|
|
<input type="file" name="thumb" onChange="unsave()" />
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
<div class="divSeparator"> </div> |