mirror of
https://github.com/huashengdun/webssh.git
synced 2026-08-23 22:26:28 +00:00
Added set_encoding and reset_encoding
This commit is contained in:
@@ -21,21 +21,21 @@
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<form id="connect" action="" type="post" enctype="multipart/form-data">
|
||||
<form id="connect" action="" method="post" enctype="multipart/form-data">
|
||||
<div class="row">
|
||||
<div class="col">
|
||||
<label for="Hostname">Hostname</label>
|
||||
<input class="form-control" type="text" name="hostname" value="">
|
||||
<input class="form-control" type="text" name="hostname" value="" required>
|
||||
</div>
|
||||
<div class="col">
|
||||
<label for="Port">Port</label>
|
||||
<input class="form-control" type="text" name="port" value="">
|
||||
<input class="form-control" type="number" name="port" min=1 max=65535 value="" required>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col">
|
||||
<label for="Username">Username</label>
|
||||
<input class="form-control" type="text" name="username" value="">
|
||||
<input class="form-control" type="text" name="username" value="" required>
|
||||
</div>
|
||||
<div class="col">
|
||||
<label for="Username">Private Key</label>
|
||||
@@ -45,7 +45,7 @@
|
||||
<div class="row">
|
||||
<div class="col">
|
||||
<label for="Password">Password</label>
|
||||
<input class="form-control" type="password" name="password" placeholder="" value="">
|
||||
<input class="form-control" type="password" name="password" value="">
|
||||
</div>
|
||||
<div class="col">
|
||||
If Private Key is chosen, password will be used to decrypt the Private Key if it is encrypted, otherwise used as the password of username.
|
||||
|
||||
Reference in New Issue
Block a user