forked from kzahel/web-server-chrome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (35 loc) · 1.52 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
<html>
<body>
<div style="border:1px solid green">web server status: <div id="status"></div></div>
<input type="button" id="choose-folder" value="Choose Folder" />
current: <span id="curfolder"></span>
<input type="text" id="choose-port" value="8887" />
<input type="button" id="restart" value="Restart Server" />
<br />
<p><span style="font-weight:bold; font-size:200%" id="local-interface"><a href="http://127.0.0.1:8887" target="_blank">http://127.0.0.1:8887</a></span> (local web server URL)</p>
<div id="other-interfaces"></div>
<p>
Thanks for trying out Web Server for Chrome. This is BETA quality
software. Please, give me feedback about which features you need added
to make this useful for you.
</p>
<p>MIT License</p>
<!--p><input id="donate" type="button" value="Donate with in-app purchase" /><br />
You can make also make a donation to help improve the software!</p-->
<ul>
<li>
<a target="_blank" href="https://github.com/kzahel/web-server-chrome/issues">Create an issue on Github</a>
</li>
<li>
<a target="_blank" href="https://chrome.google.com/webstore/support/ofhbbkphhbklhfoeikjpcbhemlocgigb">Leave feedback in the Chrome Web Store</a>
</li>
</ul>
And of course,
<a target="_blank" href="https://chrome.google.com/webstore/detail/web-server-for-chrome/ofhbbkphhbklhfoeikjpcbhemlocgigb/reviews">leave a nice review</a>
leave a nice review to help others find this software
<script src="underscore.js"></script>
<script src="common.js"></script>
<script src="index.js"></script>
<script src="buy.js"></script>
</body>
</html>