use a table layout (for now) to make the mail form usable
This commit is contained in:
parent
2258c67a00
commit
56cdd43b8d
1 changed files with 22 additions and 15 deletions
|
@ -7,22 +7,29 @@
|
|||
</head>
|
||||
<body>
|
||||
|
||||
|
||||
<div id="mail_pic"><img src="${tg.url('/get_current_shot')}"/></div>
|
||||
|
||||
<div id="mail_info">
|
||||
<form action="${tg.url('/senden')}" method="post">
|
||||
<label for="mailaddress">An:</label>
|
||||
<input type="textfield" id="mailaddress"
|
||||
name="mailaddress" value="${mailaddress}" size="30" />
|
||||
<br/>
|
||||
<label for="mailtext">Text:</label>
|
||||
<textarea name="mailtext" id="mailtext"
|
||||
rows="10" cols="40" wrap="physical">${mailtext}</textarea>
|
||||
<br/>
|
||||
<input type="submit" name="senden" value="senden" />
|
||||
<table>
|
||||
<tr><td>
|
||||
<div id="mail_pic"><img src="${tg.url('/get_current_shot')}"/></div>
|
||||
<form action="${tg.url('/ausloeser')}" method="post">
|
||||
<input type="submit" name="senden" value="Zurück" />
|
||||
</form>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div id="mail_info">
|
||||
<form action="${tg.url('/senden')}" method="post">
|
||||
<label for="mailaddress">An:</label>
|
||||
<input type="textfield" id="mailaddress"
|
||||
name="mailaddress" value="${mailaddress}" size="30" />
|
||||
<br/>
|
||||
<label for="mailtext">Text:</label>
|
||||
<textarea name="mailtext" id="mailtext"
|
||||
rows="10" cols="40" wrap="physical">${mailtext}</textarea>
|
||||
<br/>
|
||||
<input type="submit" name="senden" value="senden" />
|
||||
</form>
|
||||
</div>
|
||||
</td></tr>
|
||||
</table>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Reference in a new issue