summaryrefslogtreecommitdiffstats
path: root/templates/install.tmpl
blob: b2ae3bac21995ef0a6f908652887f587e5d83050 (plain)
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
{{template "base/head" .}}
<div id="body" class="container">
    <form action="/install" method="post" class="form-horizontal card" id="install-card">
        {{.CsrfTokenHtml}}
        <h3>Install Steps For First Running</h3>

        <div class="alert alert-danger form-error{{if .HasError}}{{else}} hidden{{end}}">{{.ErrorMsg}}</div>
        <p class="help-block text-center">GoGits need MySQL or PostgreSQL server</p>
        <div class="form-group">
            <label class="col-md-3 control-label">Database Type: </label>

            <div class="col-md-8">
                <select name="database" id="install-database" class="form-control">
                    <option value="mysql">MySQL</option>
                    <option value="pgsql">PostgreSQL</option>
                    <option value="sqlite">SQLite</option>
                </select>
            </div>
        </div>
        <div class="server-sql">
            <div class="form-group">
                <label class="col-md-3 control-label">Host: </label>

                <div class="col-md-8">
                    <input name="host" class="form-control" placeholder="Type mysql server ip or domain" value="localhost" required="required">
                </div>
            </div>
            <div class="form-group">
                <label class="col-md-3 control-label">Port: </label>

                <div class="col-md-8">
                    <input name="port" class="form-control" placeholder="Type mysql server port" value="3306" required="required">
                </div>
            </div>
            <div class="form-group">
                <label class="col-md-3 control-label">User: </label>

                <div class="col-md-8">
                    <input name="user" class="form-control" placeholder="Type mysql username" required="required">
                </div>
            </div>
            <div class="form-group">
                <label class="col-md-3 control-label">Password: </label>

                <div class="col-md-8">
                    <input name="passwd" type="password" class="form-control" placeholder="Type mysql password" required="required">
                </div>
            </div>
            <div class="form-group">
                <label class="col-md-3 control-label">Database: </label>

                <div class="col-md-8">
                    <input name="database" type="text" class="form-control" placeholder="Type mysql database name" value="gogs" required="required">

                    <p class="help-block">Recommend use INNODB engine with utf8_general_ci charset.</p>
                </div>
            </div>
            <div class="form-group pgsql-setting hide">
                <label class="col-md-3 text-right">SSL MODE: </label>
                <div class="col-md-8">
                    <input name="ssl-mode" type="checkbox" class="form-control">
                    <p class="help-block">Use SSL protocol to connect PostgreSQL.</p>
                </div>
            </div>
        </div>
        <div class="sqlite-setting hide">
            <div class="form-group">
                <label class="col-md-3 control-label">Path: </label>

                <div class="col-md-8">
                    <input name="path" class="form-control" placeholder="Type sqlite file path" value="xxx/file.db">
                    <p class="help-block">The file path of SQLite database.</p>
                </div>
            </div>
        </div>

        <div class="form-group">
            <div class="col-md-8 col-md-offset-3">
                <button class="btn btn-sm btn-info">Test Connection</button>
            </div>
        </div>

        <hr/>

        <p class="help-block text-center">General settings for GoGits</p>

        <div class="form-group">
            <label class="col-md-3 control-label">Repository Path: </label>

            <div class="col-md-8">
                <input name="repo-path" type="text" class="form-control" placeholder="Type your repository directory" value="/var/gogs/repostiory" required="required">

                <p class="help-block">The git copy of each repository is saved in this directory.</p>
            </div>
        </div>
        <div class="form-group">
            <label class="col-md-3 control-label">Run User: </label>

            <div class="col-md-8">
                <input name="system-user" type="text" class="form-control" placeholder="Type mysql password" value="root" required="required">

                <p class="help-block">The user has access to visit and run GoGits.</p>
            </div>
        </div>

        <hr/>

        <p class="help-block text-center">Admin Account Settings</p>

        <div class="form-group">
            <label class="col-md-3 control-label">Username: </label>

            <div class="col-md-8">
                <input name="repo-path" type="text" class="form-control" placeholder="Type admin user name" value="admin" required="required">
            </div>
        </div>
        <div class="form-group">
            <label class="col-md-3 control-label">Password: </label>

            <div class="col-md-8">
                <input name="system-user" type="password" class="form-control" placeholder="Type admin user password" required="required">
            </div>
        </div>

        <hr/>

        <div class="form-group text-center">
            <button class="btn btn-danger btn-lg">Install GoGits</button>
            <button class="btn btn-default btn-sm" type="button" data-toggle="modal" data-target="#advance-options-modal">
                Advanced Options
            </button>
        </div>

        <div class="modal fade" id="advance-options-modal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
            <div class="modal-dialog">
                <div class="modal-content">
                    <div class="modal-header"><h4 class="modal-title">Advanced Options</h4></div>
                    <div class="modal-body">
                        <p class="help-block text-center">Email Service Settings</p>

                        <div class="form-group">
                            <label class="col-md-3 control-label">SMTP Host: </label>

                            <div class="col-md-8">
                                <input name="repo-path" type="text" class="form-control" placeholder="Type admin user name">
                            </div>
                        </div>
                        <div class="form-group">
                            <label class="col-md-3 control-label">Email: </label>

                            <div class="col-md-8">
                                <input name="repo-path" type="text" class="form-control" placeholder="Type admin user name">
                            </div>
                        </div>
                        <div class="form-group">
                            <label class="col-md-3 control-label">Password: </label>

                            <div class="col-md-8">
                                <input name="system-user" type="password" class="form-control" placeholder="Type admin user password">
                            </div>
                        </div>
                        <hr/>
                        <p class="text-center help-block">Notification Settings</p>

                        <div class="form-group">
                            <label class="col-md-6 text-right">Enable Register Confirmation: </label>

                            <div class="col-md-4">
                                <input name="system-user" type="checkbox" class="form-control">
                            </div>
                        </div>
                        <div class="form-group">
                            <label class="col-md-6 text-right">Enable Mail Notification: </label>

                            <div class="col-md-4">
                                <input name="system-user" type="checkbox" class="form-control">
                            </div>
                        </div>
                    </div>
                    <div class="modal-footer">
                        <button type="button" class="btn btn-success" data-dismiss="modal">Confirm</button>
                    </div>
                </div>
            </div>
        </div>

    </form>
</div>
{{template "base/footer" .}}