<input id="event_title" class="event_input" type="text" value="<?php 
echo $event->getTitle();
?>
" name="title" autocomplete="off" placeholder="Veranstaltungstitel eingeben" required />
		</li>
		<li>
			<label for="event_desc_short">Kurzbeschreibung: </label>
			<textarea id="event_desc_short" class="event_input" rows="5" name="desc_short" placeholder="Kurze Beschreibung eingeben" required /><?php 
echo $event->getDescShort();
?>
</textarea>
		</li>
		<li>
			<label for="event_desc_long">Langbeschreibung: </label>
			<textarea id="event_desc_long" class="event_input desc_long" rows="40" name="desc_long"><?php 
echo $event->getDescLong();
?>
</textarea>
		</li>

		<li>
			<label for="event_price">Preis [€]:</label>
			<input id="event_price" class="event_input" type="number" step="0.01" min="0.00" max="99" value="<?php 
echo $event->getPrice('.');
?>
" name="price" autocomplete="off" placeholder="Eintrittspreis eingeben" required />
		</li>
		<li>
			<label for="event_guests">Gäste: </label>
			<input id="event_guests" class="event_input" type="number" step="1" min="0" max="500" value="<?php 
echo $event->getGuests();