-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathssh.html
More file actions
25 lines (24 loc) · 785 Bytes
/
ssh.html
File metadata and controls
25 lines (24 loc) · 785 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<html>
<head>
<script src="script.js"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="sshForm">
<label>SSH port <span class="req">*</span> </label>
<input type="text" placeholder="SSH port" class="isReq" value="22">
<br> <br>
<label>SSH user <span class="req">*</span> </label>
<input type="text" placeholder="SSH user" class="isReq">
<br> <br>
<label>SSH auth</label>
<select>
<option value="app" selected>password</option>
</select>
<br> <br>
<label>SSH Password <span class="req">*</span> </label>
<input type="password" placeholder="SSH Password" class="isReq">
<br> <br>
</div>
</body>
</html>