Code: Select all
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<head>
<title>newsletter change profile</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style type="text/css">
<!--
body, table { font-family: Tahoma, Helvetica, sans-serif; font-size: 12px; }
h1 { font-family: Tahoma, Helvetica, sans-serif; font-size: 16px; }
select, input { font-family: Tahoma, Helvetica, sans-serif; font-size: 12px;}
select { width: 200px; }
-->
</style>
</head>
<body bgcolor="#C0C0C0" link="#bb2233" vlink="#bb2233" alink="#bb2233">
<table width="480" border="0" align="center" cellpadding="2" cellspacing="0">
<tr bgcolor="#808080">
<td bgcolor="#808080">
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
<tr>
<td>
<form action="form.do">
<input type="hidden" name="agnCI" value="1">
<input type="hidden" name="agnFN" value="en_profil_confirm">
<input type="hidden" name="agnUID" value="$!agnUID">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td colspan="3"> </td>
</tr>
<tr>
<td width="10"> </td>
<td><h1>CHANGE DATA</h1>
<p>Please change your data here:</p>
<table border=0>
<tr><td width="120">salutation:</td>
<td><select name="GENDER">
<option value="2" #if($!customerData.GENDER == "2") selected #end>unknown</option>
<option value="1" #if($!customerData.GENDER == "1") selected #end>Ms.</option>
<option value="0" #if($!customerData.GENDER == "0") selected #end>Mr.</option>
</select></td></tr>
<tr><td>firstname:</td>
<td><input type="text" name="FIRSTNAME" style="width: 200px;" value="$!customerData.FIRSTNAME"></td></tr>
<tr><td>lastname:</td>
<td><input type="text" name="LASTNAME" style="width: 200px;" value="$!customerData.LASTNAME"></td></tr>
<tr><td>eMail:</td>
<td><input type="text" name="EMAIL" style="width: 200px;" value="$!customerData.EMAIL"></td></tr>
<tr><td valign="top">eMail format:</td>
<td><input type="radio" name="MAILTYPE" value="1" #if($!customerData.MAILTYPE == "1") checked #end>HTML<br>
<input type="radio" name="MAILTYPE" value="0" #if($!customerData.MAILTYPE == "0") checked #end>Text</td></tr>
<tr><td colspan="2"> </td></tr>
<tr><td><input type="submit" value="Save"></td>
<td><input type="reset" value="Cancel" onClick="javascript:history.back();"></td></tr>
</table>
</td>
<td width="10"> </td>
</tr>
<tr>
<td colspan="3"> </td>
</tr>
</table>
</form>
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>