2019-01-26 13:24:54 +00:00
<div class="installer">
2019-02-27 14:50:42 +00:00
<img src="/assets/img/setup/logo-purple.png" srcset="/assets/img/setup/logo-purple@2x.png" alt="Documize Setup" style="width: 250px; height: 76px;">
2019-05-28 10:59:48 +01:00
<Ui::UiSpacer @size="300" />
2019-02-27 14:50:42 +00:00
<h1 class="color-theme-700">Installation Guide</h1>
<p class="color-gray-800">
Review the <a href="https://docs.documize.com/s/VzO9ZqMOCgABGyfW/installation-guides/d/V16L08ucxwABhZF6/installation-guide">installation instructions</a>
2019-02-28 12:31:57 +00:00
and recommended <a href="https://docs.documize.com/s/VzO9ZqMOCgABGyfW/installation-guides/d/V2KuM8ICcQABagM5/mysql-specific-database-tuning">database tuning guide</a>
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>
2018-12-08 20:54:19 +00:00
{{ focus-input id = "siteTitle" type = "text" value = model .title class = ( if hasEmptyTitleError "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">
<label for="adminFirstname">Firstname</label>
2018-12-08 20:54:19 +00:00
{{ in put id = "adminFirstname" type = "text" value = model .firstname class = ( if hasEmptyFirstnameError "form-control is-invalid" "form-control" ) }}
2017-11-29 11:20:04 +00:00
</div>
<div class="form-group">
<label for="adminLastname">Lastname</label>
2018-12-08 20:54:19 +00:00
{{ in put id = "adminLastname" type = "text" value = model .lastname class = ( if hasEmptyLastnameError "form-control is-invalid" "form-control" ) }}
2017-11-29 11:20:04 +00:00
</div>
<div class="form-group">
<label for="adminEmail">Email</label>
2018-12-08 20:54:19 +00:00
{{ in put id = "adminEmail" type = "email" value = model .email class = ( if hasEmptyEmailError "form-control is-invalid" "form-control" ) }}
2017-11-29 11:20:04 +00:00
<small class="form-text text-muted">No spam. Ever.</small>
</div>
<div class="form-group">
<label for="adminPassword">Password</label>
2018-12-08 20:54:19 +00:00
{{ in put id = "adminPassword" type = "password" value = model .password class = ( if hasEmptyPasswordError "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>
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>