Skip to content

Commit

Permalink
青蛇探针v1.0..0
Browse files Browse the repository at this point in the history
  • Loading branch information
souying committed Mar 10, 2023
1 parent e6285ab commit d260a5e
Show file tree
Hide file tree
Showing 38 changed files with 3,275 additions and 1 deletion.
661 changes: 661 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,8 @@
# serverMmon
# serverMmon中文版:

* serverMmon中文版是nodeJs开发的一个酷炫高逼格的云探针、云监控、服务器云监控、多服务器探针~
* 在线演示:http://106.126.11.114:5880/home

开发完毕 调试中 --调试完毕上传仓库


Binary file added client/public/background.jfif
Binary file not shown.
31 changes: 31 additions & 0 deletions client/public/client.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>青蛇探针WEB-SSH🐍</title>
<link rel="stylesheet" href="login/sshnake.css" />
<link rel="icon" href="favicon.ico" />
<style>
html,
body {
background-color: #000;
height: 100%;
margin: 0;
}
.dropup-content {
display: none;
}
</style>
</head>
<body>
<div class="box">
<div id="header">青蛇🐍终端</div>
<div id="terminal-container" class="terminal"></div>
<div id="bottomdiv">
<div id="footer"></div>
<div id="status"></div>
<div id="countdown"></div>
</div>
</div>
<script src="login/sshnake.bundle.js" defer></script>
</body>
</html>
Binary file added client/public/favicon.ico
Binary file not shown.
85 changes: 85 additions & 0 deletions client/public/login.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
h1 {
padding: 10px;
color: white;
margin-block-start: 0;
margin-block-end: 0;
margin-inline-start: 0;
margin-inline-end: 0;
font-weight: 200;
font-style: italic;
animation: flicker 1.5s infinite alternate;
display: flex;
justify-content: center;
align-items: center;
margin-left: 25%;
max-width: 50%;
}
body {
background-color: black;
color: white;
text-align: center;
font-size: 1.25em;
font-family: "Courier New", Courier, monospace;
}
input {
background-color: darkgray;
font-size: 2em;
}
input:-internal-autofill-selected {
background-color: darkgray;
}
label {
font-size: 2em;
}
button {
background-color: #228b22;
font-size: 2em;
border-radius: 12px;
transition-duration: 0.2s;
cursor: pointer;
}
button:hover {
background-color: #50c878;
}
:root {
/* Set neon color */
--neon-text-color: #228b22;
--neon-border-color: #48c348;
}

h1::-moz-selection {
background-color: var(--neon-border-color);
color: var(--neon-text-color);
}

h1::selection {
background-color: var(--neon-border-color);
color: var(--neon-text-color);
}

h1:focus {
outline: none;
}

/* Animate neon flicker */
@keyframes flicker {
0%,
19%,
21%,
23%,
25%,
54%,
56%,
100% {
text-shadow: -0.2rem -0.2rem 1rem #fff, 0.2rem 0.2rem 1rem #fff, 0 0 2rem var(--neon-text-color),
0 0 4rem var(--neon-text-color), 0 0 6rem var(--neon-text-color), 0 0 8rem var(--neon-text-color),
0 0 10rem var(--neon-text-color);
}

20%,
24%,
55% {
text-shadow: none;
box-shadow: none;
}
}
22 changes: 22 additions & 0 deletions client/public/login.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!--<meta name="viewport" content="width=device-width, initial-scale=1.0">-->
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>青蛇探针在线SSH-登录🐍</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<form method="POST" action="/submit" class="login-form">
<h2>🐍青蛇探针WEB-SSH 客户端</h2>
<input type="text" name="host" placeholder="服务器IP"/>
<input type="text" name="username" placeholder="用户名(root)"/>
<input type="password" name="userpassword" placeholder="服务器密码">
<button type="submit">登录</button>
</form>
</div>
</body>
</html>
24 changes: 24 additions & 0 deletions client/public/login2.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>在线SSH 登录</title>
<link rel="icon" href="favicon.ico" />
<link rel="stylesheet" href="login.css" />
</head>
<body>
<h1 style="font-size: 3em">青蛇探针</h1>
<div style="color: #48c348">青蛇探针WEB-SSH 客户端</div>
<div style="font-size: 4em">🐍</div>
<form method="POST" action="/submit">
<p>
<label for="host">服务器ip</label><br />
<input name="host" /><br />
<label for="username">服务器用户名</label><br />
<input name="username" /><br />
<label for="userpassword">服务器密码</label><br />
<input name="userpassword" type="password" /><br />
</p>
<button type="submit" value="Login">登录</button>
</form>
</body>
</html>
1 change: 1 addition & 0 deletions client/public/sshnake.bundle.js

Large diffs are not rendered by default.

Loading

0 comments on commit d260a5e

Please sign in to comment.