settings.html.php 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. <!--
  2. Wifi Hotspot app for YunoHost
  3. Copyright (C) 2015 Julien Vaubourg <julien@vaubourg.com>
  4. Contribute at https://github.com/jvaubourg/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. <h2><?= T_("Wifi Hotspot Configuration") ?></h2>
  17. <?php if($faststatus): ?>
  18. <span class="label label-success" data-toggle="tooltip" data-title="<?= T_('This is a fast status. Click on More details to show the complete status.') ?>"><?= T_('Running') ?></span>
  19. <?php else: ?>
  20. <span class="label label-danger" data-toggle="tooltip" data-title="<?= T_('This is a fast status. Click on More details to show the complete status.') ?>"><?= T_('Not Running') ?></span>
  21. <?php endif; ?>
  22. &nbsp; <img src="public/img/loading.gif" id="status-loading" alt="Loading..." /><a href="#" id="statusbtn" data-toggle="tooltip" data-title="<?= T_('Loading complete status may take a few minutes. Be patient.') ?>"><?= T_('More details') ?></a>
  23. <div id="status" class="alert alert-dismissible alert-info fade in" style="margin-top: 10px" role="alert">
  24. <button type="button" class="close"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button>
  25. <div id="status-text"></div>
  26. </div>
  27. <hr />
  28. <div class="row">
  29. <div class="col-sm-offset-2 col-sm-8">
  30. <form method="post" enctype="multipart/form-data" action="?/settings" class="form-horizontal" role="form" id="form">
  31. <input type="hidden" name="_method" value="put" />
  32. <div class="panel panel-default">
  33. <div class="panel-heading">
  34. <h3 class="panel-title"><?= T_("Wifi") ?></h3>
  35. </div>
  36. <div style="padding: 14px 14px 0 10px">
  37. <div class="form-group">
  38. <label for="wifi_ssid" class="col-sm-3 control-label"><?= T_('Name (SSID)') ?></label>
  39. <div class="col-sm-9">
  40. <input type="text" class="form-control" name="wifi_ssid" id="wifi_ssid" placeholder="myNeutralNetwork" value="<?= $wifi_ssid ?>" />
  41. </div>
  42. </div>
  43. <div class="form-group">
  44. <label for="wifi_passphrase" class="col-sm-3 control-label"><?= T_('Password (WPA2)') ?></label>
  45. <div class="col-sm-9">
  46. <input type="text" data-toggle="tooltip" data-title="<?= T_('At least 8 characters') ?>" class="form-control" name="wifi_passphrase" id="wifi_passphrase" placeholder="VhegT8oev0jZI" value="<?= $wifi_passphrase ?>" />
  47. </div>
  48. </div>
  49. <div class="form-group">
  50. <label for="wifi_channel" class="col-sm-3 control-label"><?= T_('Channel') ?></label>
  51. <div class="col-sm-9 input-group-btn">
  52. <div class="input-group">
  53. <input type="text" name="wifi_channel" id="wifi_channel" value="<?= $wifi_channel ?>" style="display: none" />
  54. <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown"><?= $wifi_channel ?> <span class="caret"></span></button>
  55. <ul class="dropdown-menu dropdown-menu-left" role="menu">
  56. <li <?= $wifi_channel == 1 ? 'class="active"' : '' ?>><a href="#">1</a></li>
  57. <li <?= $wifi_channel == 2 ? 'class="active"' : '' ?>><a href="#">2</a></li>
  58. <li <?= $wifi_channel == 3 ? 'class="active"' : '' ?>><a href="#">3</a></li>
  59. <li <?= $wifi_channel == 4 ? 'class="active"' : '' ?>><a href="#">4</a></li>
  60. <li <?= $wifi_channel == 5 ? 'class="active"' : '' ?>><a href="#">5</a></li>
  61. <li <?= $wifi_channel == 6 ? 'class="active"' : '' ?>><a href="#">6</a></li>
  62. <li <?= $wifi_channel == 7 ? 'class="active"' : '' ?>><a href="#">7</a></li>
  63. <li <?= $wifi_channel == 8 ? 'class="active"' : '' ?>><a href="#">8</a></li>
  64. <li <?= $wifi_channel == 9 ? 'class="active"' : '' ?>><a href="#">9</a></li>
  65. <li <?= $wifi_channel == 10 ? 'class="active"' : '' ?>><a href="#">10</a></li>
  66. <li <?= $wifi_channel == 11 ? 'class="active"' : '' ?>><a href="#">11</a></li>
  67. </ul>
  68. </div>
  69. </div>
  70. </div>
  71. <div class="form-group">
  72. <label for="wifi_passphrase" class="col-sm-3 control-label"><?= T_('Wifi N') ?></label>
  73. <div class="col-sm-9 input-group-btn" data-toggle="tooltip" data-title="<?= T_('Only if your antenna is 802.11n compliant') ?>">
  74. <div class="input-group">
  75. <input type="checkbox" class="form-control switch" name="wifi_n" id="wifi_n" value="1" <?= $wifi_n == 1 ? 'checked="checked"' : '' ?> />
  76. </div>
  77. </div>
  78. </div>
  79. <div class="form-group">
  80. <label for="wifi_device" class="col-sm-3 control-label"><?= T_('Device') ?></label>
  81. <div class="col-sm-9 input-group-btn">
  82. <div class="input-group">
  83. <input type="text" name="wifi_device" id="wifi_device" value="<?= $wifi_device ?>" style="display: none" />
  84. <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown"><?= $wifi_device ?> <span class="caret"></span></button>
  85. <ul class="dropdown-menu dropdown-menu-left" role="menu">
  86. <?= $wifi_device_list ?>
  87. </ul>
  88. </div>
  89. </div>
  90. </div>
  91. </div>
  92. </div>
  93. <div class="panel panel-success">
  94. <div class="panel-heading">
  95. <h3 class="panel-title" data-toggle="tooltip" data-title="<?= T_('Real Internet') ?>"><?= T_("IPv6") ?></h3>
  96. </div>
  97. <div style="padding: 14px 14px 0 10px">
  98. <?php if(empty($ip6_net)): ?>
  99. <div class="alert alert-dismissible alert-warning fade in" style="margin: 2px 2px 17px" role="alert">
  100. <button type="button" class="close" data-dismiss="alert"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button>
  101. <strong><?= T_('Notice') ?>:</strong> <?= T_("Currently, your wifi clients don't have IPv6 and it's a very bad thing. Ask your Internet Service Provider an IPv6 delegated prefix, or") ?>
  102. <a href="http://db.ffdn.org" class="alert-link"><?= T_('change providers') ?></a>!
  103. </div>
  104. <?php endif; ?>
  105. <div class="form-group">
  106. <label for="ip6_net" class="col-sm-3 control-label"><?= T_('Delegated prefix') ?></label>
  107. <div class="col-sm-9">
  108. <input type="text" class="form-control" name="ip6_net" id="ip6_net" placeholder="2001:db8:42::" value="<?= $ip6_net ?>" />
  109. </div>
  110. </div>
  111. <div class="form-group">
  112. <label for="ip6_dns0" class="col-sm-3 control-label"><?= T_('First DNS resolver') ?></label>
  113. <div class="col-sm-9">
  114. <input type="text" class="form-control" name="ip6_dns0" id="ip6_dns0" placeholder="2001:913::8" value="<?= $ip6_dns0 ?>" />
  115. </div>
  116. </div>
  117. <div class="form-group">
  118. <label for="ip6_dns1" class="col-sm-3 control-label"><?= T_('Second DNS resolver') ?></label>
  119. <div class="col-sm-9">
  120. <input type="text" class="form-control" name="ip6_dns1" id="ip6_dns1" placeholder="2001:910:800::40" value="<?= $ip6_dns1 ?>" />
  121. </div>
  122. </div>
  123. </div>
  124. </div>
  125. <div class="panel panel-danger">
  126. <div class="panel-heading">
  127. <h3 class="panel-title" data-toggle="tooltip" data-title="<?= T_('Old Internet') ?>"><?= T_("IPv4") ?></h3>
  128. </div>
  129. <div style="padding: 14px 14px 0 10px">
  130. <div class="form-group">
  131. <label for="ip4_nat_prefix" class="col-sm-3 control-label"><?= T_('NAT prefix (/24)') ?></label>
  132. <div class="col-sm-9">
  133. <input type="text" class="form-control" name="ip4_nat_prefix" id="ip4_nat_prefix" placeholder="10.0.242" value="<?= $ip4_nat_prefix ?>" />
  134. </div>
  135. </div>
  136. <div class="form-group">
  137. <label for="ip4_dns0" class="col-sm-3 control-label"><?= T_('First DNS resolver') ?></label>
  138. <div class="col-sm-9">
  139. <input type="text" class="form-control" name="ip4_dns0" id="ip4_dns0" placeholder="80.67.188.188" value="<?= $ip4_dns0 ?>" />
  140. </div>
  141. </div>
  142. <div class="form-group">
  143. <label for="ip4_dns1" class="col-sm-3 control-label"><?= T_('Second DNS resolver') ?></label>
  144. <div class="col-sm-9">
  145. <input type="text" class="form-control" name="ip4_dns1" id="ip4_dns1" placeholder="80.67.169.12" value="<?= $ip4_dns1 ?>" />
  146. </div>
  147. </div>
  148. </div>
  149. </div>
  150. <div class="form-group">
  151. <div style="text-align: center">
  152. <?php if($is_connected_through_hotspot): ?>
  153. <div class="alert alert-dismissible alert-warning fade in" role="alert" id="saveconfirmation">
  154. <strong><?= T_('Notice') ?>:</strong> <?= T_("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.") ?>
  155. <div id="confirm">
  156. <button type="submit" class="btn btn-default" data-toggle="tooltip" id="save" data-title="<?= T_('Reloading may take a few minutes. Be patient.') ?>"><?= T_('Confirm') ?></button> <img src="public/img/loading.gif" id="save-loading" alt="Loading..." />
  157. </div>
  158. </div>
  159. <button type="button" class="btn btn-default" id="saveconfirm"><?= T_('Save and reload') ?></button>
  160. <?php else: ?>
  161. <button type="submit" class="btn btn-default" data-toggle="tooltip" id="save" data-title="<?= T_('Reloading may take a few minutes. Be patient.') ?>"><?= T_('Save and reload') ?></button> <img src="public/img/loading.gif" id="save-loading" alt="Loading..." />
  162. <?php endif; ?>
  163. </div>
  164. </div>
  165. </form>
  166. </div>
  167. </div>