-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
120 lines (92 loc) · 2.5 KB
/
index.html
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<meta charset="UTF-8">
<!doctype html>
<html>
<title>Remoth Download</title>
<head>
<link rel="shortcut icon" href="icon.ico">
</head>
<body>
<div class="bar">
<div>
<div class="iconText">
<img class="icon" src='icon.ico' />
</div>
<div class="iconText">Remoth Download Page</div>
</div>
</div>
<br>
<div class="contentText">
<h3>Installation Guide:</h3>
<p>1. Download the latest version of Remoth.</p>
<p>2. Open Remoth.exe once downloaded</p>
<p>3. Enable access to private network</p>
<p>4. Navigate to http://localhost:5000/ </p>
<br>
<h3>Add Remoth to your startup:</h3>
<p>1. Press windows key + r</p>
<p>2. type: shell:startup</p>
<p>3. drag Remoth.exe to the window opened</p>
</div>
<div class="contentText">
<br>
<div class="downloadArea">
<h3>Download the latest version here:</h3>
<p>Download Remoth Client application based on your operating system.</p>
<button class="downloadButton" onclick="window.open('Remoth.exe')">Windows - Executable - 9.95 MB</button>
<button class="downloadButton" onclick="window.open('RemothOSX.dmg')">MacOS - Package - 10.24 MB</button>
</div>
<br> <br>
<br>
</div>
<div class="downloadArea">
© 2022 All Rights Reserved - Remoth
</div>
</body>
<style>
.downloadArea {
text-align: center;
}
.downloadButton {
width: 300px;
height: 40px;
}
.bar {
background-color: green;
height: 60px;
width: 100%;
padding: 5px
}
.icon {
width: 40px;
height: 40px;
padding: 10px;
border-radius: 25%;
}
.contentText {
font-size: 18px;
text-align: justify;
background-color: white;
padding: 5px;
margin-top: 20px;
margin-bottom: 20px;
}
.iconText {
font-size: 24px;
vertical-align: middle;
display: inline-block;
width: auto;
}
html,
body {
font-family: 'Arial', sans-serif;
padding: 0;
margin: 0;
background-color: whitesmoke;
}
div {
margin-left: auto;
margin-right: auto;
width: 1000px;
}
</style>
</html>