100 lines
No EOL
5.5 KiB
PHP
100 lines
No EOL
5.5 KiB
PHP
@extends('layouts.admin')
|
|
|
|
@section('title')
|
|
Blueprint
|
|
@endsection
|
|
|
|
@section('content-header')
|
|
<img src="/assets/extensions/blueprint/logo.jpg" alt="logo" style="float:left;width:30px;height:30px;border-radius:3px;margin-right:5px;">
|
|
<h1 ext-title>Blueprint<tag mg-left blue>{{ $bp->version() }}</tag></h1>
|
|
<ol class="breadcrumb">
|
|
<li><a href="{{ route('admin.index') }}">Admin</a></li>
|
|
<li><a href="{{ route('admin.extensions') }}">Extensions</a></li>
|
|
<li class="active">Blueprint</li>
|
|
</ol>
|
|
@endsection
|
|
|
|
@section('content')
|
|
<p>Blueprint is the framework that drives all Blueprint-compatible extensions and allows multiple extensions to be installed at the same time.</p>
|
|
<div class="row">
|
|
<div class="col-xs-3">
|
|
<div class="box">
|
|
<div class="box-header with-border">
|
|
<h3 class="box-title"><i class='bx bxs-shapes' style='margin-right:5px;'></i></i>Overview</h3>
|
|
</div>
|
|
<div class="box-body">
|
|
<p>You are currently using version <code>{{ $bp->version() }}</code>.</p>
|
|
</div>
|
|
</div>
|
|
<div class="box">
|
|
<div class="box-header with-border">
|
|
<h3 class="box-title"><i class='bx bxs-pen' style='margin-right:5px;'></i>License</h3>
|
|
</div>
|
|
<div class="box-body">
|
|
@if ($license)
|
|
<input type="text" id="license" value="{{ $bp->licenseKeyCensored() }}" class="form-control" style="letter-spacing: 3px;" readonly/>
|
|
<p class="text-muted small">Your license key is valid. <a data-toggle="modal" data-target="#licenseMoreInfo">Learn more.</a></p>
|
|
@else
|
|
<input type="text" id="license" value="{{ $bp->licenseKeyCensored() }}" class="form-control" style="letter-spacing: 3px;" readonly/>
|
|
<p class="text-muted small">Your license key could not be validated. <a data-toggle="modal" data-target="#licenseMoreInfo">Learn more.</a></p>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-xs-9">
|
|
<div class="box">
|
|
<div class="box-header with-border">
|
|
<h3 class="box-title"><i class='bx bxs-cog' style='margin-right:5px;'></i>Configuration</h3>
|
|
</div>
|
|
<div class="box-body">
|
|
<div class="row">
|
|
<div class="col-xs-4">
|
|
<label class="control-label">placeholder</label>
|
|
<input type="text" id="placeholder" value="placeholder" class="form-control" @if(!$bp->licenseIsValid())readonly @endif/>
|
|
<p class="text-muted small">placeholder</p>
|
|
</div>
|
|
<div class="col-xs-4">
|
|
<label class="control-label">placeholder</label>
|
|
<input type="text" id="placeholder" value="placeholder" class="form-control" @if(!$bp->licenseIsValid())readonly @endif/>
|
|
<p class="text-muted small">placeholder</p>
|
|
</div>
|
|
<div class="col-xs-4">
|
|
<label class="control-label">placeholder</label>
|
|
<input type="text" id="placeholder" value="placeholder" class="form-control" @if(!$bp->licenseIsValid())readonly @endif/>
|
|
<p class="text-muted small">placeholder</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="box-footer">
|
|
@if ($license)
|
|
<a href=""><button class="btn btn-gray-alt btn-sm pull-right">Save</button></a>
|
|
@else
|
|
<p class="text-muted small">You are required to have a valid license key attached to be able to change any settings.</p>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="modal fade" id="licenseMoreInfo" tabindex="-1" role="dialog">
|
|
<div class="modal-dialog" role="document">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<i class='bx bxs-pen' style='margin-right:6px;float:left;font-size:23px;'></i><h4 class="modal-title" style="font-size:19px;">License</h4>
|
|
</div>
|
|
<div class="modal-body">
|
|
<p>
|
|
Every purchase comes with a unique license key preinstalled into your Blueprint files and allows our license system to work without any user input.
|
|
Most of the time this system does not hinder the user experience, but in rare cases our validation server may be offline and is unable to validate any licenses.
|
|
If this happens, it should automatically resolve itself within 2 hours.
|
|
<br><br>
|
|
The Blueprint development team is also able to blacklist licenses and ips remotely.
|
|
A license may be blacklisted if the buyer chargebacks their purchase or violates our terms and conditions.
|
|
</p>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button class="btn btn-gray-alt btn-sm pull-right" data-dismiss="modal" aria-label="Close">Close</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection |