OneBot: Leantime 改造版源码(BOM/Univer 表格/AI 接管/品牌替换等)
This commit is contained in:
31
app/Domain/Install/Templates/new.blade.php
Normal file
31
app/Domain/Install/Templates/new.blade.php
Normal file
@@ -0,0 +1,31 @@
|
||||
@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
|
||||
19
app/Domain/Install/Templates/update.blade.php
Normal file
19
app/Domain/Install/Templates/update.blade.php
Normal file
@@ -0,0 +1,19 @@
|
||||
@extends($layout)
|
||||
|
||||
@section('content')
|
||||
|
||||
<div class="pageheader">
|
||||
<div class="pagetitle">
|
||||
<h1>{!! __('headlines.update_database') !!}</h1>
|
||||
</div>
|
||||
</div>
|
||||
{!! $tpl->displayInlineNotification() !!}
|
||||
<div class="regcontent" id="login">
|
||||
<p>{!! __('text.new_db_version') !!}</p><br />
|
||||
<form action="{{ BASE_URL }}/install/update" method="post" class="registrationForm">
|
||||
<input type="hidden" name="updateDB" value="1" />
|
||||
<p><x-global::forms.button tag="input" inputType="submit" name="updateAction" contentRole="primary" :labelText="__('buttons.update_now')" onClick="this.form.submit(); this.disabled=true; this.value='Updating…'; " /></p>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
@endsection
|
||||
Reference in New Issue
Block a user