Files
Leantime/app/Domain/Help/Templates/projectIntroStep.blade.php

26 lines
1.2 KiB
PHP

<div style="max-width:700px;">
<form class="onboardingModal" method="post" id="projectTitleOnboarding" action="{{ BASE_URL }}/help/firstLogin?step={{ $nextStep }}">
<input type="hidden" name="currentStep" value="{{ $currentStep }}" />
<div class="row">
<div class="col-md-8">
<h1>{{ __('headlines.hi_there') }}</h1>
<p>{!! __('text.get_organized_with_projects') !!}</p>
<br />
<label>{{ __('label.start_with_project_title') }}</label>
<x-global::forms.text-input id="projectName" name="projectname" value="" placeholder="" style="width:100%;" /><br />
</div>
<div class="col-md-4">
<div class='svgContainer' style="width:300px; margin-top:40px;">
{!! file_get_contents(ROOT . "/dist/images/svg/undraw_game_day_ucx9.svg") !!}
</div>
</div>
</div>
<div class="row">
<div class="col-md-12 tw-text-right">
<x-global::forms.button tag="input" inputType="submit" contentRole="primary" :labelText="__('buttons.next')" />
</div>
</div>
</form>
</div>