-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathguide.html
More file actions
81 lines (78 loc) · 3.07 KB
/
guide.html
File metadata and controls
81 lines (78 loc) · 3.07 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="guide.css">
<title>Laserfiche Installation Planner</title>
</head>
<body>
<!-- TODO: Add environment configuration options like domain -->
<div class="server-container">
<div class="server">
<div class="top-row">
<div class="server-name">
<label for="server-name">Server FQDN:</label>
<input type="text" name="server-name">
</div>
</div>
<div class="software-options options-section">
<h3>Software to install on this server:</h3>
<div class="option">
<input type="checkbox" name="forms">
<label for="forms">Forms 10.4.4</label>
</div>
<div class="option">
<input type="checkbox" name="webaccess">
<label for="webaccess">Web Access 10.4.4</label>
</div>
<div class="option">
<input type="checkbox" name="weblink">
<label for="weblink">WebLink 10.2</label>
</div>
<div class="option">
<input type="checkbox" name="workflow">
<label for="workflow">Workflow 10.4</label>
</div>
<div class="option">
<input type="checkbox" name="server">
<label for="server">LF Server 10.4.2</label>
</div>
<div class="option">
<input type="checkbox" name="lfds">
<label for="lfds">LFDS 10.4.2</label>
</div>
<div class="option">
<input type="checkbox" name="sql">
<label for="sql">SQL Server instance</label>
</div>
<div class="option">
<input type="checkbox" name="sts">
<label for="sts">STS instance</label>
</div>
</div>
<div class="config-options options-section">
<h3>Other server options:</h3>
<div class="option">
<input type="checkbox" name="domain">
<label for="domain">Domain Joined</label>
</div>
<div class="option">
<input type="checkbox" name="public">
<label for="public">Publicly Accessible</label>
</div>
</div>
</div>
</div>
<div class="bottom-row">
<div class="add-container button-container">
<button class="add-server">Add Server</button>
</div>
<div class="generate-container button-container">
<button class="generate-instructions">Generate Instructions</button>
</div>
</div>
</body>
<script src="dompopulator.js"></script>
<script src="instruction.js"></script>
</html>