mirror of https://github.com/pixelfed/pixelfed.git
22 lines
574 B
PHP
22 lines
574 B
PHP
@extends('layouts.blank')
|
|
|
|
@section('content')
|
|
<admin-invite code="{{$code}}" />
|
|
@endsection
|
|
|
|
@push('scripts')
|
|
<script type="text/javascript" src="{{ mix('js/admin_invite.js') }}"></script>
|
|
<script type="text/javascript">App.boot();</script>
|
|
@endpush
|
|
|
|
@push('styles')
|
|
<link href="{{ mix('css/spa.css') }}" rel="stylesheet" data-stylesheet="light">
|
|
<style type="text/css">
|
|
body {
|
|
background: #4776E6;
|
|
background: -webkit-linear-gradient(to right, #8E54E9, #4776E6);
|
|
background: linear-gradient(to right, #8E54E9, #4776E6);
|
|
}
|
|
</style>
|
|
@endpush
|