OneBot: Leantime 改造版源码(BOM/Univer 表格/AI 接管/品牌替换等)
This commit is contained in:
52
app/Domain/Auth/Templates/userInvite.blade.php
Normal file
52
app/Domain/Auth/Templates/userInvite.blade.php
Normal file
@@ -0,0 +1,52 @@
|
||||
@extends($layout)
|
||||
|
||||
@section('content')
|
||||
|
||||
<x-auth::onboardingProgress :percentComplete="12" current="account" :completed="[]" />
|
||||
|
||||
<h2>{{ __('titles.account_details') }}</h2>
|
||||
|
||||
<?php $tpl->dispatchTplEvent('afterPageHeaderClose'); ?>
|
||||
<div class="regcontent">
|
||||
<?php $tpl->dispatchTplEvent('afterRegcontentOpen'); ?>
|
||||
|
||||
<form id="resetPassword" action="" method="post">
|
||||
<?php $tpl->dispatchTplEvent('afterFormOpen'); ?>
|
||||
|
||||
<?php echo $tpl->displayInlineNotification(); ?>
|
||||
|
||||
<input type="hidden" name="step" value="1"/>
|
||||
|
||||
<div class="">
|
||||
<label for="name"><?php echo $tpl->language->__("label.name"); ?></label>
|
||||
<input type="text" name="name" style="margin-bottom:15px" id="name" placeholder="<?php echo $tpl->language->__("input.placeholders.name"); ?>" value="<?=$tpl->escape($user['firstname']); ?>" />
|
||||
</div>
|
||||
<div class="">
|
||||
<label for="jobTitle"><?php echo $tpl->language->__("label.role_or_title"); ?></label>
|
||||
<input type="text" name="jobTitle" id="jobTitle" style="margin-bottom:15px" placeholder="<?php echo $tpl->language->__("input.placeholders.jobtitle"); ?>" value="<?=$tpl->escape($user['jobTitle']); ?>" />
|
||||
|
||||
</div>
|
||||
<div class="">
|
||||
<label for="password"><?php echo $tpl->language->__("label.password"); ?></label>
|
||||
<input type="password" name="password" autocomplete="off" id="password" style="margin-bottom:15px" placeholder="<?php echo $tpl->language->__("input.placeholders.enter_new_password"); ?>" />
|
||||
<span id="pwStrength" style="width:100%;"></span>
|
||||
</div>
|
||||
<small><?=$tpl->__('label.passwordRequirements') ?></small><br /><br />
|
||||
<div class="">
|
||||
<input type="hidden" name="saveAccount" value="1" />
|
||||
<?php $tpl->dispatchTplEvent('beforeSubmitButton'); ?>
|
||||
<div class="tw-text-right">
|
||||
<input type="submit" name="createAccount" class="tw-w-auto" style="width:auto" value="<?php echo $tpl->language->__("buttons.next"); ?>" />
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<?php $tpl->dispatchTplEvent('beforeFormClose'); ?>
|
||||
</form>
|
||||
<?php $tpl->dispatchTplEvent('beforeRegcontentClose'); ?>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
leantime.usersController.checkPWStrength('password');
|
||||
</script>
|
||||
|
||||
@endsection
|
||||
Reference in New Issue
Block a user