mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-03 03:49:29 +00:00
56d2686e72
"Anmerkung zur Bewerbung"-Text wird automatisch eingefügt - "Select..."-Option bei Preview nur wenn mehr als 1 Empfänger
25 lines
816 B
PHP
25 lines
816 B
PHP
<form method="post" action="#" id="notizform">
|
|
<div class="form-group">
|
|
<div class="text-center">
|
|
<label>Notiz hinzufügen</label>
|
|
</div>
|
|
<div>
|
|
<div class="form-group">
|
|
<label>Titel: </label>
|
|
<div class="input-group">
|
|
<input id="inputNotizTitel" type="text" class="form-control" name="notiztitel"/>
|
|
<div class="input-group-addon" onclick="document.getElementById('inputNotizTitel').value='Anmerkung zur Bewerbung'">
|
|
<span class="glyphicon glyphicon-text-background"></span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<label>Text: </label>
|
|
<textarea name="notiz" class="form-control" rows="10" cols="32"></textarea>
|
|
</div>
|
|
<div class="text-right">
|
|
<button type="submit" class="btn btn-default">Speichern</button>
|
|
</div>
|
|
</div>
|
|
</form> |