32 lines
1.3 KiB
PHP
32 lines
1.3 KiB
PHP
@extends($layout)
|
|
|
|
@section('content')
|
|
|
|
<div class="pageheader">
|
|
<div class="pagetitle">
|
|
<h1>{!! __('headlines.installation') !!}</h1>
|
|
</div>
|
|
|
|
</div>
|
|
<div class="regcontent" id="login">
|
|
<p>{!! __('text.this_script_will_set_up_leantime') !!}</p><br />
|
|
|
|
{!! $tpl->displayInlineNotification() !!}
|
|
|
|
<form action="{{ BASE_URL }}/install" method="post" class="registrationForm">
|
|
<h3 class="subtitle">{!! __('subtitles.login_info') !!}</h3>
|
|
<x-global::forms.text-input type="email" name="email" placeholder="{{ __('label.email') }}" value="" /><br />
|
|
<br /><br />
|
|
<h3 class="subtitle">{!! __('subtitles.user_info') !!}</h3>
|
|
<x-global::forms.text-input name="firstname" placeholder="{{ __('label.firstname') }}" value="" /><br />
|
|
<x-global::forms.text-input name="lastname" placeholder="{{ __('label.lastname') }}" value="" />
|
|
<x-global::forms.text-input name="company" placeholder="{{ __('label.company_name') }}" value="" />
|
|
<br /><br />
|
|
<input type="hidden" name="install" value="Install" />
|
|
<p><x-global::forms.button tag="input" inputType="submit" name="installAction" contentRole="primary" :labelText="__('buttons.install')" onClick="this.form.submit(); this.disabled=true; this.value='{{ __('buttons.install') }}'; " /></p>
|
|
</form>
|
|
|
|
</div>
|
|
|
|
@endsection
|