Regenerate API key

This commit is contained in:
Nabeel Shahzad
2017-12-31 13:08:41 -06:00
parent e8108597c4
commit 4cc08406fa
6 changed files with 56 additions and 64 deletions

View File

@@ -49,7 +49,6 @@
</div>
<div class="collapse navbar-collapse justify-content-end" id="navigation">
<ul class="navbar-nav">
@if(Auth::check())
<li class="nav-item">
<a class="nav-link" href="{!! url('/dashboard') !!}">

View File

@@ -8,14 +8,9 @@
@else
<div class="alert
alert-{{ session('flash_notification.level') }}
{{ session()->has('flash_notification.important') ? 'alert-important' : '' }}"
>
{{ session()->has('flash_notification.important') ? 'alert-important' : '' }}">
@if(session()->has('flash_notification.important'))
<button type="button"
class="close"
data-dismiss="alert"
aria-hidden="true"
>&times;</button>
<button type="button"class="close" data-dismiss="alert">&times;</button>
@endif
{!! session('flash_notification.message') !!}

View File

@@ -43,12 +43,21 @@
</div>
</div>
{{--
show the details/edit fields only for the currently logged in user
--}}
@if(Auth::check() && $user->id === Auth::user()->id)
<div class="clearfix" style="height: 50px;"></div>
<div class="row">
<div class="col-md-1"></div>
<div class="col-sm-10">
<a href="{!! route('frontend.profile.edit', ['id'=>$user->id]) !!}" class="pull-right btn btn-primary">edit</a>
<div class="col-sm-12">
<div class="text-right">
<a href="{!! route('frontend.profile.regen_apikey') !!}" class="btn btn-warning"
onclick="return confirm('Are you sure? This will reset your API key.')">new api key</a>
&nbsp;
<a href="{!! route('frontend.profile.edit', ['id' => $user->id]) !!}"
class="btn btn-primary">edit</a>
</div>
<h3 class="description">your profile</h3>
<table class="table table-full-width">
<tr>
@@ -56,7 +65,7 @@
<td>{!! $user->email !!}</td>
</tr>
<tr>
<td>API Key<p class="description">don't share this!</p></td>
<td>API Key&nbsp;&nbsp;<span class="description">don't share this!</span></td>
<td>{!! $user->api_key !!}</td>
</tr>
<tr>
@@ -67,49 +76,4 @@
</div>
</div>
@endif
{{--<div class="container profile-page">
<div class="page-header page-header-small text-color-dark-beige">
<div class="container text-color-dark-beige">
<div class="content-center" style="color: #9b9992;">
<div class="photo-container">
<img src="{!! public_asset('/assets/frontend/img/logo.svg') !!}" alt="">
</div>
<h3 class="title">{!! $user->name !!}</h3>
<h6>{!! $user->rank->name !!}</h6>
<p class="description" style="color: #9A9A9A;">
{!! $user->airline->name !!}
</p>
<br /><br />
<div class="content" style="max-width: 650px;">
<div class="social-description">
<h2>{!! $user->flights!!}</h2>
<p>Flights</p>
</div>
<div class="social-description">
<h2>{!! \App\Facades\Utils::secondsToTimeString($user->flight_time, false)!!}</h2>
<p>Flight Hours</p>
</div>
@if($user->home_airport)
<div class="social-description">
<h2>{!! $user->home_airport->icao !!}</h2>
<p>Home Airport</p>
</div>
@endif
@if($user->current_airport)
<div class="social-description">
<h2>{!! $user->current_airport->icao !!}</h2>
<p>Current Airport</p>
</div>
@endif
</div>
</div>
</div>
</div>
</div>--}}
@endsection