2020-06-28 15:12:12 +00:00
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
|
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
2020-06-28 14:22:57 +00:00
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
|
|
<head>
|
|
|
|
<!--
|
|
|
|
@tag hta:application
|
|
|
|
|
|
|
|
@attribute ApplicationName Sets the name of the HTA.
|
|
|
|
|
|
|
|
@attribute Border [Thick]|Thin|None
|
|
|
|
@attribute BorderStyle [Normal]|Raised|Sunken|Complex|Static
|
|
|
|
@attribute Caption [Yes]|No
|
|
|
|
@attribute ContextMenu [Yes]|No
|
|
|
|
@attribute Icon Path/To/Icon.ico
|
|
|
|
@attribute MaximizeButton [Yes]|No
|
|
|
|
@attribute MinimizeButton [Yes]|No
|
|
|
|
@attribute Navigable [Yes]|No
|
|
|
|
@attribute Scroll [Auto]|Yes|No
|
|
|
|
@attribute Selection [Yes]|No
|
|
|
|
@attribute ShowInTaskbar [Yes]|No
|
|
|
|
@attribute SingleInstance [Yes]|No
|
|
|
|
@attribute SysMenu [Yes]|No (Setting to No will remove close button)
|
|
|
|
@attribute WindowsState [Normal]|Minimize|Maximize
|
|
|
|
-->
|
|
|
|
<hta:application
|
2020-06-28 16:37:15 +00:00
|
|
|
ApplicationName="NextVPN"
|
2020-06-28 14:22:57 +00:00
|
|
|
Border="Thin"
|
|
|
|
BorderStyle="Static"
|
|
|
|
Caption="Yes"
|
|
|
|
ContextMenu="No"
|
|
|
|
MaximizeButton="No"
|
|
|
|
MinimizeButton="No"
|
|
|
|
Navigable="No"
|
|
|
|
Scroll="No"
|
|
|
|
Selection="No"
|
|
|
|
ShowInTaskbar="Yes"
|
|
|
|
SingleInstance="Yes"
|
|
|
|
SysMenu="Yes"
|
|
|
|
WindowState="Normal"
|
|
|
|
/>
|
2020-06-28 16:37:15 +00:00
|
|
|
<title>NextVPN</title>
|
2020-06-28 14:22:57 +00:00
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
2020-06-28 15:12:12 +00:00
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
|
|
<link type="text/css" rel="stylesheet" href="app/assets/css/style.css" />
|
2020-06-28 14:22:57 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2020-06-28 14:38:30 +00:00
|
|
|
<div id="app"></div>
|
2020-06-28 14:22:57 +00:00
|
|
|
<script type="text/javascript" src="app.js"></script>
|
|
|
|
<script type="text/javascript">
|
2020-06-28 15:12:12 +00:00
|
|
|
window.resizeTo(800, 600);
|
2020-06-28 14:38:30 +00:00
|
|
|
init_window("webloader");
|
2020-06-28 14:22:57 +00:00
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|