2019-01-26 13:24:54 +00:00
<div class="installer">
2022-03-17 13:03:04 -04:00
<img src="/assets/img/setup/logo.png" srcset="/assets/img/setup/logo@2x.png" alt="Documize Community Setup">
2019-05-28 10:59:48 +01:00
<Ui::UiSpacer @size="300" />
2022-03-17 13:03:04 -04:00
<h1 class="color-theme-700">Documize Community Setup</h1>
2019-02-27 14:50:42 +00:00
<p class="color-gray-800">
2019-09-11 19:08:53 +01:00
Review the <a href="https://docs.documize.com/s/VzO9ZqMOCgABGyfW/installation-guides/d/V16L08ucxwABhZF6/installation-guide" target="_blank">installation instructions</a>
and recommended <a href="https://docs.documize.com/s/VzO9ZqMOCgABGyfW/installation-guides/d/V2KuM8ICcQABagM5/database-tuning" target="_blank">database tuning guide</a>
</p>
<p class="color-gray-800">
Please enable Full-Text Search when using Microsoft SQL Server 2016+.
2019-02-27 14:50:42 +00:00
</p>
2019-05-28 10:59:48 +01:00
<Ui::UiSpacer @size="300" />
2019-01-26 13:24:54 +00:00
2018-12-21 11:15:59 +00:00
<form {{ action "save" on = "submit" }} >
2017-11-29 11:20:04 +00:00
<div class="form-group">
2019-01-26 13:24:54 +00:00
<label>Site name</label>
2019-06-19 12:46:05 +01:00
{{ focus-input id = "setup-title" type = "text" value = model .title class = ( if hasTitleError "form-control is-invalid" "form-control" ) }}
2019-02-27 14:50:42 +00:00
<small class="form-text text-muted">Usually your company or team name</small>
2016-11-27 15:59:08 -08:00
</div>
2017-11-29 11:20:04 +00:00
<div class="form-group">
2019-06-19 12:46:05 +01:00
<label for="setup-firstname">Firstname</label>
{{ in put id = "setup-firstname" type = "text" value = model .firstname class = ( if hasFirstnameError "form-control is-invalid" "form-control" ) }}
2017-11-29 11:20:04 +00:00
</div>
<div class="form-group">
2019-06-19 12:46:05 +01:00
<label for="setup-lastname">Lastname</label>
{{ in put id = "setup-lastname" type = "text" value = model .lastname class = ( if hasLastnameError "form-control is-invalid" "form-control" ) }}
2017-11-29 11:20:04 +00:00
</div>
<div class="form-group">
2019-06-19 12:46:05 +01:00
<label for="setup-email">Email</label>
{{ in put id = "setup-email" type = "email" value = model .email class = ( if hasEmailError "form-control is-invalid" "form-control" ) }}
2017-11-29 11:20:04 +00:00
</div>
<div class="form-group">
2019-06-19 12:46:05 +01:00
<label for="new-password">Password</label>
{{ in put id = "new-password" type = "password" value = model .password class = ( if hasPasswordError "form-control is-invalid" "form-control" ) }}
2018-10-31 10:12:19 -07:00
<small class="form-text text-muted">Pick something strong and unique that you don't use anywhere else</small>
2017-11-29 11:20:04 +00:00
</div>
2019-06-19 12:46:05 +01:00
{{ # if ( eq model .edition constants .Product .EnterpriseEdition ) }}
<div class="form-group">
<label for="activation-key">Activation Key</label>
{{ textarea id = "activation-key" value = model .activationKey rows = "5" class = ( if hasKeyError "form-control is-invalid" "form-control" ) }}
2022-03-01 20:01:06 -05:00
<small class="form-text text-muted">You can get from <a href="https://www.documize.com/community" target="_blank">https://www.documize.com/community</a></small>
2019-06-19 12:46:05 +01:00
</div>
{{ / if }}
2018-12-21 11:15:59 +00:00
{{ ui / ui-button submit = true color = constants .Color .Green light = true label = buttonLabel onClick = ( action "save" ) }}
2017-10-06 13:59:58 -04:00
</form>
2019-01-26 13:24:54 +00:00
2019-05-28 10:59:48 +01:00
<Ui::UiSpacer @size="300" />
2016-07-28 16:49:31 +02:00
</div>