This commit is contained in:
Namhyeon Go 2020-06-29 01:37:15 +09:00
parent 633304378a
commit 2d34dfc10c
3691 changed files with 233 additions and 21 deletions

View File

@ -23,7 +23,7 @@
@attribute WindowsState [Normal]|Minimize|Maximize
-->
<hta:application
ApplicationName="Application Name"
ApplicationName="NextVPN"
Border="Thin"
BorderStyle="Static"
Caption="Yes"
@ -38,7 +38,7 @@
SysMenu="Yes"
WindowState="Normal"
/>
<title>Application Title</title>
<title>NextVPN</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link type="text/css" rel="stylesheet" href="app/assets/css/style.css" />

View File

@ -5,11 +5,86 @@
<div class="serverbox">
<ul>
<li>
<span>모든 위치</span>
<ul class="sub">
<li><span>로그인하세요</span></li>
<li><a href="#us1"><span><img src="app/assets/img/flags/shiny/16/United-States.png" alt="United States" /> US 1</span></a></li>
<li><a href="#us2"><span><img src="app/assets/img/flags/shiny/16/United-States.png" alt="United States" /> US 2</span></a></li>
<li><a href="#us3"><span><img src="app/assets/img/flags/shiny/16/United-States.png" alt="United States" /> US 3</span></a></li>
</li>
</ul>
</li>
</ul>
</div>
</div>
<div id="content">
<div class="logobox">
<img src="app/assets/img/logo.png" alt="로고" />
</div>
<div class="loginbox">
<form method="post" action="">
<div class="box1">
<ul>
<li>
<label for="username">사용자 이름</label>
<input id="username" class="text" type="text" placeholder="사용자 이름" />
</li>
<li>
<label for="password">패스워드</label>
<input id="password" class="text" type="password" placeholder="패스워드" />
</li>
</ul>
</div>
<div class="box2">
<button id="btn_login" class="submit" type="submit">로그인</button>
</div>
</form>
</div>
<div class="statusbox">
<ul>
<li>
<dl>
<dt>서버:</dt>
<dd>-</dd>
</dl>
</li>
<li>
<dl>
<dt>상태:</dt>
<dd><span style="font-weight: bold;">연결 안됨</span></dd>
</dl>
</li>
<li>
<dl>
<dt>IP:</dt>
<dd>-</dd>
</dl>
</li>
<li>
<dl>
<dt>업타임:</dt>
<dd>-</dd>
</dl>
</li>
<li>
<dl>
<dt>보냄:</dt>
<dd>-</dd>
</dl>
</li>
<li>
<dl>
<dt>받음: <a id="test" href="#test">test</a></dt>
<dd>-</dd>
</dl>
</li>
</ul>
</div>
</div>

View File

@ -50,6 +50,7 @@ html, body {
}
input.text {
font-size: 1em;
font-family: "맑은 고딕",, "Malgun Gothic", "Segoe UI", Calibri, Arial, Sans-Serif;
}
@ -65,6 +66,7 @@ input.text {
width: 30%;
height: 100%;
background-color: #333333;
font-size: 0.8em;
}
#aside .searchbox {
@ -82,7 +84,101 @@ input.text {
color: #505050;
}
#aside .serverbox ul li {
border-top: 1px solid #2a2c2b;
border-bottom: 1px solid #343635;
background-color: #27282a;
color: #fff;
}
#aside .serverbox ul li a {
display: block;
text-decoration: none;
color: #fff;
}
#aside .serverbox ul li span {
display: block;
padding: 10px;
text-align: center;
}
#aside .serverbox ul li span img {
vertical-align: middle;
}
#aside .serverbox ul.sub li {
background-color: #3b3c3e;
}
#aside .serverbox ul.sub li span {
padding-left: 30px;
text-align: left;
}
#content {
float: right;
width: 70%;
height: 100%;
background: url(../img/World-Map-PNG-Picture.png) no-repeat center 50px;
}
#content .logobox {
margin: 50px 0;
text-align: center;
}
#content .loginbox {
text-align: center;
}
#content .loginbox label {
display: none;
}
#content .loginbox ul li {
margin: 8px 0;
}
#content .loginbox ul li input.text {
width: 200px;
border: 1px solid #888;
border-radius: 8px;
padding: 5px 10px;
}
#content .loginbox button.submit {
border: 0;
background: none;
background-color: #43a747;
color: #fff;
font-weight: bold;
padding: 10px 20px;
border-radius: 8px;
font-size: 1em;
cursor: pointer;
}
#content .loginbox .box2 {
margin-top: 30px;
}
#content .statusbox {
width: 360px;
margin: 60px auto;
}
#content .statusbox ul li {
float: left;
width: 180px;
margin: 10px 0;
}
#content .statusbox ul li dl dt {
color: #616686;
display: inline;
}
#content .statusbox ul li dl dd {
display: inline;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 276 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 259 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 121 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 291 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 309 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 448 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 263 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 241 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 332 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 382 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 302 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 209 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 105 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 182 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 228 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 98 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 267 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 171 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 129 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 211 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 159 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 240 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 151 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 102 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 337 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 106 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 321 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 449 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 236 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 355 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 108 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 432 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 361 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 337 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 518 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 103 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 166 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 454 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 232 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 163 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 177 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 183 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 138 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 338 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 162 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 103 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 150 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 310 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 390 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 259 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 108 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 443 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 272 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 331 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 110 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 100 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 391 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 215 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 191 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 364 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 221 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 432 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 106 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 228 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 333 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 142 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 277 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 264 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 199 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 209 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 102 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 308 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 421 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 102 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 420 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 316 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 344 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 122 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 387 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 103 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 100 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 217 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 224 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 108 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 115 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 122 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 102 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 162 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 245 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 239 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 141 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 196 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 313 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 228 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 198 B

Some files were not shown because too many files have changed in this diff Show More