2016-07-28 16:49:31 +02:00
|
|
|
<div class="col-lg-9 col-md-9 col-sm-9">
|
2017-10-06 13:59:58 -04:00
|
|
|
<form {{action "save" on="submit"}}>
|
|
|
|
<div class="form-bordered">
|
|
|
|
<div class="form-header">
|
|
|
|
<div class="title">Let's setup Documize</div>
|
|
|
|
<div class="tip">Database: <b>{{model.dbname}}</b></div>
|
|
|
|
</div>
|
|
|
|
<div class="input-control input-transparent">
|
|
|
|
<label>Team</label>
|
|
|
|
<div class="tip">What's your tribe called?</div>
|
|
|
|
{{focus-input id="siteTitle" type="text" value=model.title class=(if hasEmptyTitleError 'error')}}
|
|
|
|
</div>
|
|
|
|
<div class="input-control input-transparent">
|
|
|
|
<label>Firstname</label>
|
|
|
|
<div class="tip">What do people call you?</div>
|
|
|
|
{{input id="adminFirstname" type="text" value=model.firstname class=(if hasEmptyFirstnameError 'error')}}
|
|
|
|
</div>
|
|
|
|
<div class="input-control input-transparent">
|
|
|
|
<label>Lastname</label>
|
|
|
|
<div class="tip">How the government refers to you</div>
|
|
|
|
{{input id="adminLastname" type="text" value=model.lastname class=(if hasEmptyLastnameError 'error')}}
|
|
|
|
</div>
|
|
|
|
<div class="input-control input-transparent">
|
|
|
|
<label>Email</label>
|
|
|
|
<div class="tip">No spam. Ever!</div>
|
|
|
|
{{input id="adminEmail" type="email" value=model.email class=(if hasEmptyEmailError 'error')}}
|
|
|
|
</div>
|
|
|
|
<div class="input-control input-transparent">
|
|
|
|
<label>Password</label>
|
|
|
|
<div class="tip">Something you can remember without writing it down.</div>
|
|
|
|
{{input id="adminPassword" type="text" value=model.password class=(if hasEmptyPasswordError 'error')}}
|
|
|
|
</div>
|
|
|
|
<button type="submit" class="regular-button button-green" {{action 'save'}}>Setup</button>
|
2016-11-27 15:59:08 -08:00
|
|
|
</div>
|
2017-10-06 13:59:58 -04:00
|
|
|
</form>
|
2016-07-28 16:49:31 +02:00
|
|
|
</div>
|