Add user directory & isolate authorisation

This commit is contained in:
2020-06-27 19:15:33 +01:00
parent 71efdf93d8
commit 33c16fcf46
25 changed files with 812 additions and 59 deletions

View File

@@ -63,7 +63,7 @@ I
<form name="search" method="POST" action="{{route('searchRegisteredPLayerList')}}">
@csrf
<div class="input-group">
<input type="text" name="searchTerm" class="form-control" placeholder="Username/email search">
<input type="text" name="searchTerm" class="form-control" placeholder="Full/partial email search">
<span class="input-group-btn">
<button class="btn btn-default" type="submit">
<i class="fa fa-search"></i>
@@ -116,6 +116,7 @@ I
<th>#</th>
<th>IGN</th>
<th>UUID</th>
<th>Email</th>
<th>Status</th>
<th>Registration Date</th>
<th>Actions</th>
@@ -125,11 +126,12 @@ I
<tbody>
@foreach($users as $user)
<tr>
<td>{{$user->id}}</td>
<td>{{UUID::toUsername($user->uuid)}}</td>
<td>{{$user->uuid}}</td>
<td>{{ $user->email }}</td>
<td>
@if ($user->isBanned())
<span class="badge badge-danger"><i class="fa fa-ban"></i> Banned</span>
@@ -150,7 +152,7 @@ I
</table>
@else
<div class="alert alert-secondary">
<i class="fas fa-question"></i><span> There are no registered players!</span>
<p>
Registered players are those without a staff role in the team management application.

View File

@@ -49,6 +49,7 @@
<th>Full Name</th>
<th>UUID</th>
<th>Rank</th>
<th>Email</th>
<th>Status</th>
<th>Join Date</th>
<th>Actions</th>
@@ -60,7 +61,7 @@
@foreach($users as $user)
<tr>
<td>1</td>
<td>{{ $user->id }}</td>
<td>{{$user->name}}</td>
<td>{{UUID::toUsername($user->uuid)}}</td>
<td>
@@ -68,16 +69,16 @@
<span class="badge badge-info badge-sm">{{$role->name}}</span>
@endforeach
</td>
<td>{{ $user->email }}</td>
<td><span class="badge badge-success">Active</span></td>
<td>{{$user->created_at}}</td>
<td>
<button type="button" class="btn btn-sm btn-success mr-2" onclick="window.location.href='{{route('showSingleProfile', ['user' => $user->id])}}'"><i class="fa fa-eye"></i></button>
<button type="button" class="btn btn-sm btn-warning mr-2"><i class="fas fa-pencil-alt"></i></button>
</td>
</tr>
@endforeach
</tbody>
</table>