settings.html.php 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. <!--
  2. Wifi Hotspot app for YunoHost
  3. Copyright (C) 2015 Julien Vaubourg <julien@vaubourg.com>
  4. Contribute at https://github.com/labriqueinternet/hotspot_ynh
  5. This program is free software: you can redistribute it and/or modify
  6. it under the terms of the GNU Affero General Public License as published by
  7. the Free Software Foundation, either version 3 of the License, or
  8. (at your option) any later version.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU Affero General Public License for more details.
  13. You should have received a copy of the GNU Affero General Public License
  14. along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. -->
  16. <div id="wifiparty_screen">
  17. <div id="wifiparty_ssid_part">
  18. <div class="btn-group" role="group">
  19. <button type="button" class="btn btn-default" id="wifiparty_close"><span class="glyphicon glyphicon-eye-close"></span></button>
  20. <button type="button" class="btn btn-default" id="wifiparty_zoomin_ssid"><span class="glyphicon glyphicon-zoom-in"></span></button>
  21. <button type="button" class="btn btn-default" id="wifiparty_zoomout_ssid"><span class="glyphicon glyphicon-zoom-out"></span></button>
  22. </div>
  23. <span id="wifiparty_ssid"><span class="glyphicon glyphicon-signal"></span> <span></span></span>
  24. </div>
  25. <div class="btn-group" role="group">
  26. <button type="button" class="btn btn-default" id="wifiparty_zoomin_passphrase"><span class="glyphicon glyphicon-zoom-in"></span></button>
  27. <button type="button" class="btn btn-default" id="wifiparty_zoomout_passphrase"><span class="glyphicon glyphicon-zoom-out"></span></button>
  28. </div>
  29. </div>
  30. <h2><?= _("Wifi Hotspot Configuration") ?></h2>
  31. <?php if($faststatus): ?>
  32. <span class="label label-success" data-toggle="tooltip" data-title="<?= _('This is a fast status. Click on More details to show the complete status.') ?>"><?= _('Running') ?></span>
  33. <?php else: ?>
  34. <span class="label label-danger" data-toggle="tooltip" data-title="<?= _('This is a fast status. Click on More details to show the complete status.') ?>"><?= _('Not Running') ?></span>
  35. <?php endif; ?>
  36. &nbsp; <img src="public/img/loading.gif" id="status-loading" alt="Loading..." /><a href="#" id="statusbtn" data-toggle="tooltip" data-title="<?= _('Loading complete status may take a few minutes. Be patient.') ?>"><?= _('More details') ?></a>
  37. <div id="status" class="alert alert-dismissible alert-info fade in" style="margin-top: 10px" role="alert">
  38. <button type="button" class="close"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button>
  39. <div id="status-text"></div>
  40. </div>
  41. <hr />
  42. <div class="row">
  43. <div class="col-sm-offset-2 col-sm-8">
  44. <form method="post" enctype="multipart/form-data" action="?/settings" class="form-horizontal" role="form" id="form">
  45. <input type="hidden" name="_method" value="put" />
  46. <div class="panel panel-default">
  47. <div class="panel-heading">
  48. <h3 class="panel-title"><?= _("Service") ?></h3>
  49. </div>
  50. <div style="padding: 14px 14px 0 10px">
  51. <div class="form-group">
  52. <label for="service_enabled" class="col-sm-3 control-label"><?= _('Hotspot Enabled') ?></label>
  53. <div class="col-sm-9 input-group-btn">
  54. <div class="input-group">
  55. <input type="checkbox" class="form-control switch" name="service_enabled" id="service_enabled" value="1" <?= $service_enabled == 1 ? 'checked="checked"' : '' ?> />
  56. </div>
  57. </div>
  58. </div>
  59. <div class="form-group">
  60. <label for="wifi_device" class="col-sm-3 control-label"><?= _('Device') ?></label>
  61. <div class="col-sm-9 input-group-btn">
  62. <div class="input-group">
  63. <input type="text" name="wifi_device" id="wifi_device" value="<?= $wifi_device ?>" style="display: none" />
  64. <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown"><?= $wifi_device ?> <span class="caret"></span></button>
  65. <ul class="dropdown-menu dropdown-menu-left" id="devlist" role="menu">
  66. <?= $wifi_device_list ?>
  67. </ul>
  68. </div>
  69. </div>
  70. </div>
  71. <div class="form-group">
  72. <label class="col-sm-3 control-label"><?= _('Channel') ?></label>
  73. <div class="col-sm-9 input-group-btn">
  74. <div class="input-group dropdownmenu">
  75. <input type="text" name="wifi_channel" value="<?= $wifi_channel ?>" style="display: none" />
  76. <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown"><?= $wifi_channel ?> <span class="caret"></span></button>
  77. <ul class="dropdown-menu dropdown-menu-left" role="menu">
  78. <li <?= $wifi_channel == 1 ? 'class="active"' : '' ?>><a href="javascript:;">1</a></li>
  79. <li <?= $wifi_channel == 2 ? 'class="active"' : '' ?>><a href="javascript:;">2</a></li>
  80. <li <?= $wifi_channel == 3 ? 'class="active"' : '' ?>><a href="javascript:;">3</a></li>
  81. <li <?= $wifi_channel == 4 ? 'class="active"' : '' ?>><a href="javascript:;">4</a></li>
  82. <li <?= $wifi_channel == 5 ? 'class="active"' : '' ?>><a href="javascript:;">5</a></li>
  83. <li <?= $wifi_channel == 6 ? 'class="active"' : '' ?>><a href="javascript:;">6</a></li>
  84. <li <?= $wifi_channel == 7 ? 'class="active"' : '' ?>><a href="javascript:;">7</a></li>
  85. <li <?= $wifi_channel == 8 ? 'class="active"' : '' ?>><a href="javascript:;">8</a></li>
  86. <li <?= $wifi_channel == 9 ? 'class="active"' : '' ?>><a href="javascript:;">9</a></li>
  87. <li <?= $wifi_channel == 10 ? 'class="active"' : '' ?>><a href="javascript:;">10</a></li>
  88. <li <?= $wifi_channel == 11 ? 'class="active"' : '' ?>><a href="javascript:;">11</a></li>
  89. </ul>
  90. </div>
  91. </div>
  92. </div>
  93. </div>
  94. </div>
  95. <div id="ssids">
  96. <?php foreach($ssids as $ssid): ?>
  97. <?php set('ssid', $ssid) ?>
  98. <?= partial('_ssid.html.php') ?>
  99. <?php endforeach; ?>
  100. </div>
  101. <button id="newssid" type="button" class="btn btn-success"><?= _("Add a hotspot") ?> <span class="badge">0</span></button>
  102. <div class="form-group">
  103. <div style="text-align: center">
  104. <?php if($is_connected_through_hotspot): ?>
  105. <div class="alert alert-dismissible alert-warning fade in" role="alert" id="saveconfirmation">
  106. <strong><?= _('Notice') ?>:</strong> <?= _("You are currently connected through the wifi hotspot. Please, confirm the reloading, wait for the wifi disconnect/reconnect and go back here to check that everything is okay.") ?>
  107. <div id="confirm">
  108. <button type="submit" class="btn btn-default" data-toggle="tooltip" id="save" data-title="<?= _('Reloading may take a few minutes. Be patient.') ?>"><?= _('Confirm') ?></button> <img src="public/img/loading.gif" id="save-loading" alt="Loading..." />
  109. </div>
  110. </div>
  111. <button type="button" class="btn btn-default" id="saveconfirm"><?= _('Save and reload') ?></button>
  112. <?php else: ?>
  113. <button type="submit" class="btn btn-default" data-toggle="tooltip" id="save" data-title="<?= _('Reloading may take a few minutes. Be patient.') ?>"><?= _('Save and reload') ?></button> <img src="public/img/loading.gif" id="save-loading" alt="Loading..." />
  114. <?php endif; ?>
  115. </div>
  116. </div>
  117. </form>
  118. </div>
  119. </div>