initial commit
This commit is contained in:
@@ -0,0 +1,123 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="csrf-token" content="{{ csrf_token() }}">
|
||||
<meta property="og:title" content="Aigo@w33zard" />
|
||||
<meta property="og:description" content="AIGO: AI-recommended Guidance for Obesity management " />
|
||||
<meta property="og:image" content="{{ asset('/asset/png/thumbnail.png') }}"/>
|
||||
<meta property="og:url" content="https://aigo.w333zard.my.id/" />
|
||||
<link rel="shortcut icon" href="{{ asset('/asset/svg/logo.svg') }}" />
|
||||
|
||||
<title>Register</title>
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
|
||||
<!-- Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.bunny.net">
|
||||
<link href="https://fonts.bunny.net/css?family=figtree:400,500,600&display=swap" rel="stylesheet" />
|
||||
<script src="https://cdn.tailwindcss.com"></script>
|
||||
<style>
|
||||
.plogin{
|
||||
font-size: 36px;
|
||||
color: #6983BF;
|
||||
}
|
||||
|
||||
</style>
|
||||
|
||||
|
||||
<!-- Scripts -->
|
||||
@vite(['resources/css/app.css', 'resources/js/app.js'])
|
||||
</head>
|
||||
<body class="font-sans text-gray-900 antialiased">
|
||||
@include('navbar')
|
||||
<div class="min-h-screen flex flex-col sm:justify-center items-center pt-6 sm:pt-0" style="padding-top:80px; background-color:#1C2541;">
|
||||
<div class="w-full sm:max-w-md mt-6 mb-6 px-6 py-4 bg-white dark:bg-gray-800 shadow-md overflow-hidden sm:rounded-lg" >
|
||||
<p class="plogin justify-center text-center">Register</p>
|
||||
<form method="POST" action="{{ route('register') }}">
|
||||
@csrf
|
||||
|
||||
<!-- Username -->
|
||||
<div>
|
||||
<x-input-label for="username" :value="__('Username')" />
|
||||
<x-text-input id="username" class="block mt-1 w-full" type="text" name="username" :value="old('username')" required autofocus autocomplete="username" />
|
||||
<x-input-error :messages="$errors->get('username')" class="mt-2" />
|
||||
</div>
|
||||
|
||||
<!-- Email Address -->
|
||||
<div class="mt-4">
|
||||
<x-input-label for="email" :value="__('Email')" />
|
||||
<x-text-input id="email" class="block mt-1 w-full" type="email" name="email" :value="old('email')" required autocomplete="email" />
|
||||
<x-input-error :messages="$errors->get('email')" c lass="mt-2 mb-2" />
|
||||
</div>
|
||||
|
||||
<!-- Nama -->
|
||||
<div class="mt-4">
|
||||
<x-input-label for="name" :value="__('Nama')" />
|
||||
<x-text-input id="name" class="block mt-1 w-full" type="text" name="name" :value="old('name')" required autocomplete="name" />
|
||||
<x-input-error :messages="$errors->get('name')" class="mt-2" />
|
||||
</div>
|
||||
|
||||
<!-- Telepon -->
|
||||
<div class="mt-4">
|
||||
<x-input-label for="telepon" :value="__('Telepon')" />
|
||||
<x-text-input id="telepon" class="block mt-1 w-full" type="text" name="telepon" :value="old('telepon')" required autocomplete="telepon" />
|
||||
<x-input-error :messages="$errors->get('telepon')" class="mt-2" />
|
||||
</div>
|
||||
|
||||
<!-- Alamat -->
|
||||
<div class="mt-4">
|
||||
<x-input-label for="alamat" :value="__('Alamat')" />
|
||||
<x-text-input id="alamat" class="block mt-1 w-full" type="text" name="alamat" :value="old('alamat')" required autocomplete="alamat" />
|
||||
<x-input-error :messages="$errors->get('alamat')" class="mt-2" />
|
||||
</div>
|
||||
|
||||
<!-- Gender -->
|
||||
<div class="mt-4">
|
||||
<x-input-label for="gender" :value="__('Gender')" />
|
||||
<select id="gender" class="block mt-1 w-full border-gray-300 focus:border-indigo-500 focus:ring-indigo-500 rounded-md shadow-sm" name="gender" required autocomplete="gender">
|
||||
<option value="male">Male</option>
|
||||
<option value="female">Female</option>
|
||||
</select>
|
||||
<x-input-error :messages="$errors->get('gender')" class="mt-2" />
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<!-- Password -->
|
||||
<div class="mt-4">
|
||||
<x-input-label for="password" :value="__('Password')" />
|
||||
|
||||
<x-text-input id="password" class="block mt-1 w-full"
|
||||
type="password"
|
||||
name="password"
|
||||
required autocomplete="new-password" />
|
||||
|
||||
<x-input-error :messages="$errors->get('password')" class="mt-2" />
|
||||
</div>
|
||||
|
||||
<!-- Confirm Password -->
|
||||
<div class="mt-4">
|
||||
<x-input-label for="password_confirmation" :value="__('Confirm Password')" />
|
||||
|
||||
<x-text-input id="password_confirmation" class="block mt-1 w-full"
|
||||
type="password"
|
||||
name="password_confirmation" required autocomplete="new-password" />
|
||||
|
||||
<x-input-error :messages="$errors->get('password_confirmation')" class="mt-2" />
|
||||
</div>
|
||||
|
||||
<div class="flex items-center justify-center mt-4">
|
||||
|
||||
<x-primary-button class="text-center justify-center " style="width: 289px; background-color:#37B3B7">
|
||||
{{ __('Register') }}
|
||||
</x-primary-button>
|
||||
</div>
|
||||
<div class="flex items-center justify-center">
|
||||
<p style="color:#8296C5; font-size: 12px;"><a class="btn btn-link" href="/login" style="font-size: 12px;">Sudah memiliki akun?</a></p>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user