2023-02-02 05:51:32 +00:00
|
|
|
@extends('layouts.app')
|
|
|
|
|
|
|
|
@section('title', '认证')
|
|
|
|
|
|
|
|
@section('content')
|
|
|
|
|
|
|
|
<h3><code>{{ $data['module']['name'] }}</code> 想要获取你的用户信息。</h3>
|
|
|
|
|
|
|
|
<p>{{ $data['description'] }}</p>
|
|
|
|
|
|
|
|
@auth('web')
|
|
|
|
<form method="POST" action="{{ route('auth_request.store') }}">
|
|
|
|
@csrf
|
|
|
|
<input type="hidden" name="token" value="{{ $data['token'] }}">
|
|
|
|
<button type="submit" class="btn btn-primary">同意</button>
|
|
|
|
</form>
|
2023-02-02 06:08:25 +00:00
|
|
|
@else
|
|
|
|
<p>
|
|
|
|
在继续之前,请先<a href="{{ route('login') }}">登录</a>或<a href="{{ route('register') }}">注册</a>。
|
|
|
|
</p>
|
2023-02-02 05:51:32 +00:00
|
|
|
|
|
|
|
@endauth
|
|
|
|
|
|
|
|
@endsection
|