Newer
Older
<form action="" method="POST">
<input type="hidden" name="uid" value="<?php echo $alledaten['uid'];?>">
<input type="hidden" name="email" value="<?php echo $alledaten['emailadresse'];?>">
<table class="table table-striped">
<tr>
<td><b>Kontostand</b>:</td>
<td><?php echo number_format($alledaten['kontostand'],2,",",".").' '.$pageconfig['waehrung'];?></td>
</tr>
<tr>
<td><br /><b>Summe</b>:</td>
<td><select style="width: 40px" name="buchungsart" size="1"><option value="+" SELECTED>+</option><option value="-">-</option></select><input style="width: 100px;" type="Text" name="buchungssumme" value=""></td>
</tr>
<tr>
<td><br /><b>Grund</b> (max. 30 Zeichen):</td>
<td><input style="width: 140px" type="text" name="buchungstext" value="" maxlength="30"></td>
</tr>
<tr>
<td><br /><b>Mail an User</b>:</td>
<td><input type="radio" name="send_mail" value="ja" /> Ja <input checked="checked" type="radio" name="send_mail" value="nein" /> Nein</td>
</tr>
</table>
<div class="text-center">
<input type="submit" name="finanze" class="btn btn-default" value="» Buchen" />
</div>