diff options
Diffstat (limited to 'modules/serversetup/templates/ipaddress.html')
-rw-r--r-- | modules/serversetup/templates/ipaddress.html | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/modules/serversetup/templates/ipaddress.html b/modules/serversetup/templates/ipaddress.html new file mode 100644 index 00000000..e4967703 --- /dev/null +++ b/modules/serversetup/templates/ipaddress.html @@ -0,0 +1,34 @@ +<div class="panel panel-default"> + <div class="panel-heading"> + {{lang_bootAddress}} + </div> + <div class="panel-body"> + <p> + {{lang_chooseIP}} + </p> + <form method="post" action="?do=ServerSetup"> + <input type="hidden" name="action" value="ip"> + <input type="hidden" name="token" value="{{token}}"> + <table class="slx-table"> + {{#ips}} + <tr> + <td>{{ip}}</td> + {{#default}} + <td> + <span class="btn btn-success btn-xs"><span class="glyphicon glyphicon-ok"></span> {{lang_active}}</span> + </td> + {{/default}} + {{^default}} + <td> + <button class="btn btn-primary btn-xs" name="ip" value="{{ip}}"><span class="glyphicon glyphicon-flag"></span> {{lang_set}}</button> + </td> + {{/default}} + </tr> + {{/ips}} + </table> + <p> + {{lang_bootHint}} + </p> + </form> + </div> +</div>
\ No newline at end of file |