28 lines
836 B
PHP
28 lines
836 B
PHP
<!-- $o = System::class -->
|
|
@extends('layouts.app')
|
|
|
|
@section('htmlheader_title')
|
|
Link System
|
|
@endsection
|
|
|
|
@section('content')
|
|
<div class="row">
|
|
<div class="col-12">
|
|
<div class="greyframe titledbox shadow0xb0">
|
|
<h2 class="cap">Register System</h2>
|
|
|
|
@if($la)
|
|
<p>OK, here's what we are going to do. I'm going to send you a routed netmail to <strong class="highlight">{{ $la->ftn }}</strong> with a code - please follow the instructions
|
|
in that netmail.</p>
|
|
<p>Once the code is validated, this system will be assigned to you.</p>
|
|
@else
|
|
<p>I cant validate that <strong class="highlight">{{ $o->name }}</strong> is your system, we dont share common zones.</p>
|
|
<p>You might want to talk to an admin.</p>
|
|
@endif
|
|
|
|
<!-- @todo Fix with CSS -->
|
|
<p></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection |