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>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
|
<table>
|
||||||
<div id="mail_pic"><img src="${tg.url('/get_current_shot')}"/></div>
|
<tr><td>
|
||||||
|
<div id="mail_pic"><img src="${tg.url('/get_current_shot')}"/></div>
|
||||||
<div id="mail_info">
|
<form action="${tg.url('/ausloeser')}" method="post">
|
||||||
<form action="${tg.url('/senden')}" method="post">
|
<input type="submit" name="senden" value="Zurück" />
|
||||||
<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>
|
</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>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Reference in a new issue