File tree Expand file tree Collapse file tree 3 files changed +41
-0
lines changed
Expand file tree Collapse file tree 3 files changed +41
-0
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
256260Route::resource ('/saml/metadata ' , MetadataController::class)->only ('index ' );
257261
You can’t perform that action at this time.
0 commit comments