12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <?php
- include '../../../auth.php';
- ?>
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <link rel="stylesheet" href="../../../script/tocas/tocas.css">
- <script type='text/javascript' src="../../../script/tocas/tocas.js"></script>
- <script src="../../../script/jquery.min.js"></script>
- <title>WIFI</title>
- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
- </head>
- <body>
- <div class="ts fluid borderless slate">
- <div class="ts segment" style="width:100%;">
- <div class="ts header">
- AP Settings
- <div class="sub header">AP SSID and Password can be modified here.</div>
- </div>
- </div>
- <div class="ts container">
- </div>
- </div>
- <br>
- <div class="ts container">
- <form id="form" class="ts form" id="wifi" action="">
- <table>
- <tr>
- <td>AP SSID</td>
- <td>
- <div class="ts mini fluid input"><input name="ssid" id="ssid" type="text" placeholder="SSID"></div>
- </td>
- </tr>
- <tr>
- <td>AP Password</td>
- <td>
- <div class="ts mini fluid input"><input type="password" placeholder="Password" id="psk" name="psk" pattern="[a-zA-Z0-9]{8,}"></div>
- </td>
- </tr>
- </table>
- </form>
- <table>
- <tr>
- <td colspan="2"><button onclick="update()" class="ts basic button">Update</button></td>
- </tr>
- </table>
- </div>
-
- <div class="ts snackbar">
- <div class="content"></div>
- <a class="action"></a>
- </div>
- <script>
- startup();
- function startup(){
- //Please ADD ALL LOAD ON STARTUP SCRIPT HERE
- loadstatus();
- }
- function loadstatus(){
- $.getJSON("opr.php?opr=viewapsetting", function (data) {
- $("#ssid").val(data["ssid"]);
- $("#psk").val(data["wpa_passphrase"]);
- });
- }
- function msg(content) {
- ts('.snackbar').snackbar({
- content: content,
- actionEmphasis: 'negative',
- });
- }
- function update(){
- $.post( "opr.php?opr=setap", $( "#form" ).serialize()).done(function() {
- msg("AP Settings Updated. Changes will be made after reboot.");
- });
- }
- </script>
- </body>
- </html>
|