23 lines
844 B
PHP
23 lines
844 B
PHP
@extends('web.layouts.auth')
|
|
|
|
@section('title', '회원가입 약관동의 | PIN FOR YOU')
|
|
@section('meta_description', '회원가입 약관동의 단계입니다.')
|
|
@section('canonical', url('/auth/register/terms'))
|
|
|
|
@section('h1', '약관 동의')
|
|
@section('desc', '다음 단계에서 본인인증을 진행합니다.')
|
|
@section('card_aria', '회원가입 Step1 - 약관 동의')
|
|
@section('show_cs_links', true)
|
|
|
|
@section('auth_content')
|
|
<div class="auth-divider">임시 페이지</div>
|
|
<p style="opacity:.8; line-height:1.6;">
|
|
Step0(휴대폰 확인) 통과했습니다.<br>
|
|
다음 단계에서 약관 UI와 저장 로직을 붙일 예정입니다.
|
|
</p>
|
|
|
|
<div class="auth-actions">
|
|
<a class="auth-btn auth-btn--primary" href="{{ route('web.auth.register') }}">처음으로</a>
|
|
</div>
|
|
@endsection
|