diff options
author | Simon Rettberg | 2016-05-03 19:03:09 +0200 |
---|---|---|
committer | Simon Rettberg | 2016-05-03 19:03:09 +0200 |
commit | 50404f3b23b7fd6aeae4c9d2f6df0ea25e984e66 (patch) | |
tree | 05e99fdffa696434960d7c77966c0bc36d6339e8 /modules-available/sysconfig/templates/sshconfig-start.html | |
parent | Second half of merge.... (diff) | |
download | slx-admin-50404f3b23b7fd6aeae4c9d2f6df0ea25e984e66.tar.gz slx-admin-50404f3b23b7fd6aeae4c9d2f6df0ea25e984e66.tar.xz slx-admin-50404f3b23b7fd6aeae4c9d2f6df0ea25e984e66.zip |
WIP
Diffstat (limited to 'modules-available/sysconfig/templates/sshconfig-start.html')
-rw-r--r-- | modules-available/sysconfig/templates/sshconfig-start.html | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/modules-available/sysconfig/templates/sshconfig-start.html b/modules-available/sysconfig/templates/sshconfig-start.html new file mode 100644 index 00000000..2aa409d3 --- /dev/null +++ b/modules-available/sysconfig/templates/sshconfig-start.html @@ -0,0 +1,27 @@ +<form role="form" enctype="multipart/form-data" method="post" action="?do=SysConfig&action=addmodule&step={{step}}"> + <input type="hidden" name="token" value="{{token}}"> + <input type="hidden" name="edit" value="{{edit}}"> + <div class="input-group"> + <span class="input-group-addon">{{lang_moduleName}}</span> + <input type="text" name="title" value="{{title}}" class="form-control" autofocus="autofocus"> + </div> + <div class="form-group"> + <label> + <input type="checkbox" name="allowPasswordLogin" value="yes" {{#apl}}checked{{/apl}}> + {{lang_allowPass}} + </label> + <p><i>{{lang_allowPassInfo}}</i></p> + </div> + <div class="form-group"> + <label for="root-key">{{lang_rootKey}}</label> + <input class="form-control" type="text" name="publicKey" value="{{publicKey}}" id="root-key" pattern="[a-z0-9\-]+ +[a-zA-Z0-9=/\+]+ +.*"> + <i>{{lang_rootKeyInfo}}</i> + </div> + <div class="form-group"> + <label for="port">{{lang_listenPort}}</label> + <input class="form-control" type="text" name="listenPort" value="{{listenPort}}" id="port" pattern="\d+"> + <i>{{lang_listenPortInfo}}</i> + </div> + <button type="submit" class="btn btn-primary">{{lang_save}}</button> +</form> + |