forked from Danielv123/factorioClusterioClient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.html
29 lines (29 loc) · 789 Bytes
/
settings.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
<!DOCTYPE html>
<html>
<head>
<title>Clusterio Settings</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<a href="index.html">
<div>
<p>Back to home page</p>
</div>
</a>
<h1>Settings</h1>
<input id="folderSelector" type="submit" value="select factorio directory" onclick="mainProcess.selectFactorioDirectory()"/>
<p id="factorioDirectory"></p>
<p>Master server</p>
<input id="masterInput" type="text" onchange="setMasterAddress()">
<div id="toggleSettings">
<div class="toggleableSetting devconsole">
<label class="switch">
<input type="checkbox">
<div class="slider"></div>
</label>
<p>Dev console activated on launch</p>
</div>
</div>
<script src="settings.js"></script>
</body>
</html>