<div>
|
|
<div class="sm:mx-auto sm:w-full sm:max-w-md">
|
|
<a href="{{ route('home') }}">
|
|
<x-logo class="w-32 h-auto mx-auto text-green-600" />
|
|
</a>
|
|
|
|
<h1 class="mt-6 text-3xl font-extrabold text-center text-gray-900 leading-9">
|
|
{{ __('associate_categories.individual') }}
|
|
</h1>
|
|
|
|
<p class="mt-2 text-sm text-center text-gray-600 leading-5 max-w">
|
|
Ou
|
|
<a href="{{ route('login') }}" class="font-medium text-green-600 hover:text-green-500 lowercase focus:outline-none focus:underline transition ease-in-out duration-150">
|
|
{{ __('auth.login') }}
|
|
</a>
|
|
</p>
|
|
</div>
|
|
|
|
<form wire:submit.prevent="register" class="max-w-7xl mx-auto">
|
|
|
|
@include('livewire.associates.partials.forms.' . $form)
|
|
|
|
<div class="flex flex-wrap pt-8 border-t border-gray-200 mt-8">
|
|
|
|
<div class="lg:pr-6 w-full lg:w-1/3">
|
|
|
|
<h2 class="text-2xl font-medium">
|
|
Declaração de consentimento
|
|
</h2>
|
|
|
|
</div>
|
|
|
|
<div class="lg:pl-6 w-full lg:w-2/3">
|
|
|
|
<p>
|
|
Declaro que:
|
|
</p>
|
|
|
|
<ol class="list-decimal list-outside leading-relaxed pl-4 mt-3 space-y-2">
|
|
<li>Apoio e concordo com as Finalidades, Princípios, Objetivos e demais termos do Estatuto da UCB (http://www.uniaodeciclistas.org.br/sobre-a-ucb/estatuto/);</li>
|
|
<li>Confirmarei e/ou atualizará estes dados cadastrais uma vez por ano;</li>
|
|
<li>Caso solicitado, prestarei informações adicionais e/ou enviará documentos para a Diretoria da UCB.</li>
|
|
</ol>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="flex justify-center pt-12">
|
|
<span class="block w-full lg:w-auto rounded-md shadow-sm">
|
|
<button type="submit" class="flex justify-center w-full px-16 py-2 text-sm font-medium text-white bg-green-600 border border-transparent rounded-md hover:bg-green-500 focus:outline-none focus:border-green-700 focus:shadow-outline-green active:bg-green-700 transition duration-150 ease-in-out">
|
|
{{ __('auth.sign-up') }}
|
|
</button>
|
|
</span>
|
|
</div>
|
|
</form>
|
|
|
|
</div>
|