ulrich
2018-03-20 c726ded391f551cb6024b46af3de5931b0f0c531
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<div class="dlg-sender-edit">
  <span class="close-btn pointer-cursor">&#10006;</span>
  <div class="dlg-behaelter">
    <div class="dlg-abspieler-titel">Abspieler bearbeiten</div>
    <form>
      <input value="{{id}}" id="abspieler-id" name="abspieler-id" type="hidden"
          class="abspieler-eingabe"></br>
      <!-- <label class="inline-label">Name:</label> -->
      <input value="{{name}}" id="abspieler-name" name="abspieler-name" placeholder="Name"
          type="text" class="abspieler-eingabe"></br>
      <!-- <label class="inline-label">Bild:</label> -->
      <input value="{{logo}}" id="abspieler-bild" name="abspieler-bild" placeholder="Bild"
          class="abspieler-eingabe" type="hidden"></br>
      <!-- <label class="inline-label">URL:</label> -->
      <input value="{{url}}" id="abspieler-url"  name="abspieler-url" placeholder="URL"
          type="text" class="abspieler-eingabe"></br>
      <!-- <label class="inline-label">Typ:</label> -->
      <select id="abspieler-typ" size="1" class="abspieler-form-auswahl">
        <option value="lokal">lokal</option>
        <option value="pirc">pirc</option>
      </select></br>
      <!-- <label class="inline-label">Zustand:</label> -->
      <select id="abspieler-zustand" size="1" class="abspieler-form-auswahl">
        <option value="">nicht ausgew&auml;hlt</option>
        <option value="selected">ausgew&auml;hlt</option>
      </select></br>
      <div class="form-button-footer">
        <button type="button" id="abspieler-speichern">Speichern</button>
      </div>
    </form>
  </div>
</div>