This repository was archived by the owner on May 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.html
More file actions
109 lines (101 loc) · 3.39 KB
/
install.html
File metadata and controls
109 lines (101 loc) · 3.39 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
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
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>Serpentes Setup</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
form {
width: 800px;
margin-left: auto;
margin-right: auto;
}
label {
width: 320px;
display: inline-block;
text-align: right;
vertical-align: top;
}
input, span {
width: 200px;
padding: 5px;
display: inline-block;
font-size: 100%;
border: solid #177 2px;
border-radius: 5px;
}
input:invalid {
border: solid #d83c3c;
}
fieldset {
border: none;
}
fieldset legend {
font-size: 150%;
font-weight: bold;
margin-left: auto;
margin-right: auto;
}
button {
font-size: 100%;
margin-left: 340px;
padding: 10px 15px;
color: white;
border: none;
background-color: #177;
border-radius: 2px;
cursor: pointer;
}
div {
margin: 5px;
}
</style>
</head>
<body>
<form action="/" method="post" enctype="application/x-www-form-urlencoded">
<fieldset>
<legend>Database information</legend>
<div>
<label for="COUCHDBSERVERHOST">CouchDB Serverhost</label>
<input required id="COUCHDBSERVERHOST" type="text" value="" name="COUCHDBSERVERHOST" />
</div>
<div>
<label for="COUCHDBSERVERPORT">CouchDB Serverport</label>
<input required id="COUCHDBSERVERPORT" type="text" value="" name="COUCHDBSERVERPORT" />
</div>
<div>
<label for="COUCHDBSERVERUSERNAME">CouchDB Serverusername</label>
<input required id="COUCHDBSERVERUSERNAME" type="text" value="" name="COUCHDBSERVERUSERNAME" />
</div>
<div>
<label for="COUCHDBSERVERPASSWORD">CouchDB Serverpassword</label>
<input required id="COUCHDBSERVERPASSWORD" type="password" value="" name="COUCHDBSERVERPASSWORD" />
</div>
</fieldset>
<fieldset>
<legend>General information</legend>
<div>
<label for="PORT">Application Port</label>
<input required id="PORT" type="text" value="80" name="PORT" />
</div>
<div>
<label for="HOST">Application Host (optional)</label>
<input required id="HOST" type="text" name="HOST" />
</div>
<div>
<label for="DEFAULTDOMAIN">Default domain for Windows authentication</label>
<input required id="DEFAULTDOMAIN" type="text" value="" name="DEFAULTDOMAIN" />
</div>
<div>
<label for="certificate">SSL Certificate</label>
<span>Please move your SSL certificate in the installation folder and name it <code>server.js</code></span>
</div>
</fieldset>
<div>
<button type="submit">Save</button>
</div>
</form>
</body>
</html>