23 lines
577 B
PHP
23 lines
577 B
PHP
<!-- Stored in resources/views/child.blade.php -->
|
|
|
|
@extends('layout.app')
|
|
|
|
@section('title', 'VPN')
|
|
|
|
@section('content')
|
|
<div class="row"">
|
|
<div class="col-md-12">
|
|
<h1>Keys</h1>
|
|
<p>This is your private key, save it somewhere without this key you can't connect to the VPN. You can't get this Key a secound time from this Wepage.</p>
|
|
<input disabled class="form-control" value="{{ $keys["privkey"] }}">
|
|
<br>
|
|
<table class="table">
|
|
<tr>
|
|
<th>IP</th>
|
|
<td>{{ $peer->ip }}</td>
|
|
</tr>
|
|
</table>
|
|
|
|
</div>
|
|
</div>
|
|
@endsection
|