|
@@ -2,13 +2,12 @@
|
|
|
<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>
|
|
|
+ <h3>Install Steps For First-time Run</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>
|
|
|
+ <p class="help-block text-center">Gogs requires MySQL or PostgreSQL based on your choice</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>
|
|
@@ -46,20 +45,24 @@
|
|
|
<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>
|
|
|
+ <label class="col-md-3 control-label">Database Name: </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>
|
|
|
+ <label class="col-md-3 control-label">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>
|
|
|
+ <select name="ssl_mode" class="form-control">
|
|
|
+ <option value="disable">Disable</option>
|
|
|
+ <option value="require">Require</option>
|
|
|
+ <option value="verify-full">Verify Full</option>
|
|
|
+ </select>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -74,15 +77,15 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
- <div class="form-group">
|
|
|
+ <!-- <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>
|
|
|
+ </div> -->
|
|
|
|
|
|
<hr/>
|
|
|
|
|
|
- <p class="help-block text-center">General settings for GoGits</p>
|
|
|
+ <p class="help-block text-center">General Settings of Gogs</p>
|
|
|
|
|
|
<div class="form-group">
|
|
|
<label class="col-md-3 control-label">Repository Path: </label>
|
|
@@ -98,8 +101,7 @@
|
|
|
|
|
|
<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>
|
|
|
+ <p class="help-block">The user has access to visit and run Gogs.</p>
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
@@ -125,7 +127,7 @@
|
|
|
<hr/>
|
|
|
|
|
|
<div class="form-group text-center">
|
|
|
- <button class="btn btn-danger btn-lg">Install GoGits</button>
|
|
|
+ <button class="btn btn-danger btn-lg">Install Gogs</button>
|
|
|
<button class="btn btn-default btn-sm" type="button" data-toggle="modal" data-target="#advance-options-modal">
|
|
|
Advanced Options
|
|
|
</button>
|
|
@@ -163,20 +165,28 @@
|
|
|
<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 class="col-md-offset-3 col-md-7">
|
|
|
+ <div class="checkbox">
|
|
|
+ <label>
|
|
|
+ <input name="system-user" type="checkbox">
|
|
|
+ <strong>Enable Register Confirmation</strong>
|
|
|
+ </label>
|
|
|
+ </div>
|
|
|
</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 class="form-group">
|
|
|
+ <div class="col-md-offset-3 col-md-7">
|
|
|
+ <div class="checkbox">
|
|
|
+ <label>
|
|
|
+ <input name="system-user" type="checkbox">
|
|
|
+ <strong>Enable Mail Notification</strong>
|
|
|
+ </label>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
+
|
|
|
<div class="modal-footer">
|
|
|
<button type="button" class="btn btn-success" data-dismiss="modal">Confirm</button>
|
|
|
</div>
|