100 lines
4.4 KiB
PHP
100 lines
4.4 KiB
PHP
@extends('auth.layout')
|
|
@section('content')
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<!-- Logo -->
|
|
<div class="app-brand justify-content-center mb-6">
|
|
<a href="{{ route('dashboard.summary') }}" class="app-brand-link">
|
|
<span class="app-brand-logo demo">
|
|
<span class="text-primary">
|
|
<svg width="32" height="24" viewBox="0 0 32 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
<!-- Daun Bagian Kiri -->
|
|
<path opacity="0.3" d="M16 2.5C16 2.5 5 6.5 5 15.5C5 20.5 11 23.5 16 23.5V2.5Z" fill="currentColor" />
|
|
<!-- Daun Bagian Kanan -->
|
|
<path opacity="0.6" d="M16 2.5C16 2.5 27 6.5 27 15.5C27 20.5 21 23.5 16 23.5V2.5Z" fill="currentColor" />
|
|
<!-- Grafik Pertumbuhan (Monev) -->
|
|
<path d="M2 19L10 11L15 15L27 4" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" />
|
|
<!-- Titik Target/Pencapaian -->
|
|
<circle cx="27" cy="4" r="2.5" fill="currentColor" />
|
|
</svg>
|
|
</span>
|
|
</span>
|
|
<span class="app-brand-text demo menu-text fw-bold ms-3" style="text-transform: capitalize;">AgroMonev</span>
|
|
</a>
|
|
</div>
|
|
<!-- /Logo -->
|
|
<h4 class="mb-1">Adventure starts here 🚀</h4>
|
|
<p class="mb-6">Make your app management easy and fun!</p>
|
|
|
|
<form id="formAuthentication" class="mb-6" action="{{ route('auth.createAccount') }}" method="POST">
|
|
@csrf
|
|
<div class="mb-6 form-control-validation">
|
|
<label for="username" class="form-label">Username</label>
|
|
<input
|
|
type="text"
|
|
class="form-control"
|
|
id="username"
|
|
name="name"
|
|
placeholder="Enter your username"
|
|
autofocus />
|
|
</div>
|
|
<div class="mb-6 form-control-validation">
|
|
<label for="email" class="form-label">Email</label>
|
|
<input type="text" class="form-control" id="email" name="email" placeholder="Enter your email" />
|
|
</div>
|
|
<div class="mb-6 form-password-toggle form-control-validation">
|
|
<label class="form-label" for="password">Password</label>
|
|
<div class="input-group input-group-merge">
|
|
<input
|
|
type="password"
|
|
id="password"
|
|
class="form-control"
|
|
name="password"
|
|
placeholder="············"
|
|
aria-describedby="password" />
|
|
<span class="input-group-text cursor-pointer"><i class="icon-base ti tabler-eye-off"></i></span>
|
|
</div>
|
|
</div>
|
|
<div class="my-8 form-control-validation">
|
|
<div class="form-check mb-0 ms-2">
|
|
<input class="form-check-input" type="checkbox" id="terms-conditions" name="terms" />
|
|
<label class="form-check-label" for="terms-conditions">
|
|
I agree to
|
|
<a href="javascript:void(0);">privacy policy & terms</a>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
<button type="submit" class="btn btn-primary d-grid w-100">Sign up</button>
|
|
</form>
|
|
|
|
<p class="text-center">
|
|
<span>Already have an account?</span>
|
|
<a href="auth-login-basic.html">
|
|
<span>Sign in instead</span>
|
|
</a>
|
|
</p>
|
|
|
|
<div class="divider my-6">
|
|
<div class="divider-text">or</div>
|
|
</div>
|
|
|
|
<div class="d-flex justify-content-center">
|
|
<a href="javascript:;" class="btn btn-icon rounded-circle btn-text-facebook me-1_5">
|
|
<i class="icon-base ti tabler-brand-facebook-filled icon-20px"></i>
|
|
</a>
|
|
|
|
<a href="javascript:;" class="btn btn-icon rounded-circle btn-text-twitter me-1_5">
|
|
<i class="icon-base ti tabler-brand-twitter-filled icon-20px"></i>
|
|
</a>
|
|
|
|
<a href="javascript:;" class="btn btn-icon rounded-circle btn-text-github me-1_5">
|
|
<i class="icon-base ti tabler-brand-github-filled icon-20px"></i>
|
|
</a>
|
|
|
|
<a href="javascript:;" class="btn btn-icon rounded-circle btn-text-google-plus">
|
|
<i class="icon-base ti tabler-brand-google-filled icon-20px"></i>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection |