add-show-live-stream.phtml 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <fieldset>
  2. <dl>
  3. <dt id="cb_airtime_auth_override-label">
  4. <label class="optional" for="cb_airtime_auth">
  5. <?php echo $this->element->getElement('cb_airtime_auth')->getLabel() ?>
  6. <span class='airtime_auth_help_icon'></span>
  7. </label>
  8. </dt>
  9. <dd id="cb_airtime_auth_override-element">
  10. <?php echo $this->element->getElement('cb_airtime_auth') ?>
  11. </dd>
  12. <dt id="cb_custom_auth_override-label">
  13. <label class="optional" for="cb_custom_auth">
  14. <?php echo $this->element->getElement('cb_custom_auth')->getLabel() ?>
  15. <span class='custom_auth_help_icon'></span>
  16. </label>
  17. </dt>
  18. <dd id="cb_custom_auth_override-element">
  19. <?php echo $this->element->getElement('cb_custom_auth') ?>
  20. </dd>
  21. <div id="custom_auth_div">
  22. <dt id="custom_username-label" class="block-display">
  23. <label class="optional" for="custom_username"><?php echo $this->element->getElement('custom_username')->getLabel() ?> :
  24. <span class='stream_username_help_icon'></span>
  25. </label>
  26. </dt>
  27. <dd id="custom_username-element" class="block-display">
  28. <?php echo $this->element->getElement('custom_username') ?>
  29. <?php if($this->element->getElement('custom_username')->hasErrors()) : ?>
  30. <ul class='errors'>
  31. <?php foreach($this->element->getElement('custom_username')->getMessages() as $error): ?>
  32. <li><?php echo $error; ?></li>
  33. <?php endforeach; ?>
  34. </ul>
  35. <?php endif; ?>
  36. </dd>
  37. <dt id="custom_password-label" class="block-display">
  38. <label class="optional" for="custom_password"><?php echo $this->element->getElement('custom_password')->getLabel() ?> :
  39. </label>
  40. </dt>
  41. <dd id="custom_password-element" class="block-display">
  42. <?php echo $this->element->getElement('custom_password') ?>
  43. <?php if($this->element->getElement('custom_password')->hasErrors()) : ?>
  44. <ul class='errors'>
  45. <?php foreach($this->element->getElement('custom_password')->getMessages() as $error): ?>
  46. <li><?php echo $error; ?></li>
  47. <?php endforeach; ?>
  48. </ul>
  49. <?php endif; ?>
  50. </dd>
  51. </div>
  52. <dt id="Connection_URL-label">
  53. <label for="outputStreamURL"><?php echo _("Connection URL: "); ?></label>
  54. </dt>
  55. <dd id="Connection_URL-element">
  56. <span id="stream_url" class="static_text"><?php echo $this->connection_url; ?></span>
  57. </dd>
  58. </dl>
  59. </fieldset>