Skip to content

Commit de87bff

Browse files
authored
Merge pull request #8610 from ProcessMaker/bugfix/FOUR-27904
FOUR-27904 Web entry Authenticated, is not working, when the start ev…
2 parents f240073 + bcfe8eb commit de87bff

File tree

3 files changed

+41
-0
lines changed

3 files changed

+41
-0
lines changed
7.29 KB
Loading
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
@extends('layouts.minimal')
2+
3+
@section('title')
4+
{{__('Unauthorized')}}
5+
@endsection
6+
7+
@section('content')
8+
<div class="error-container">
9+
<div class="error-404-icon">
10+
<img src="/img/task-is-not-assigned.png"/>
11+
</div>
12+
<div class="error-content">
13+
<h1>{{__('This Task is not Assigned')}}</h1>
14+
<p>{{__('To be able to continue the task')}}</p>
15+
<p>{{__('needs to be assigned.')}}</p>
16+
</div>
17+
</div>
18+
@endsection
19+
20+
@section('css')
21+
22+
<style>
23+
.container {
24+
display: flex;
25+
justify-content: center;
26+
align-items: center;
27+
margin-top: 10%;
28+
}
29+
.error-content {
30+
margin-top: auto;
31+
}
32+
.error-404-icon {
33+
text-align: center;
34+
}
35+
36+
</style>
37+
@endsection

routes/web.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -252,6 +252,10 @@
252252
return view('errors.not-authorized');
253253
})->name('errors.not-authorized');
254254

255+
Route::get('/task-is-not-assigned', function () {
256+
return view('errors.task-is-not-assigned');
257+
})->name('errors.task-is-not-assigned');
258+
255259
// SAML Metadata Route
256260
Route::resource('/saml/metadata', MetadataController::class)->only('index');
257261

0 commit comments

Comments
 (0)