|
6 | 6 | <div class="w-full max-w-sm">
|
7 | 7 | <div class="flex flex-col break-words bg-white border border-2 rounded shadow-md">
|
8 | 8 |
|
9 |
| - <div class="font-semibold bg-grey-lightest text-grey-darkest py-3 px-6 mb-0 shadow-inner"> |
| 9 | + <div class="font-semibold bg-gray-200 text-gray-700 py-3 px-6 mb-0 shadow-inner"> |
10 | 10 | {{ __('Register') }}
|
11 | 11 | </div>
|
12 | 12 |
|
13 | 13 | <form class="w-full p-6" method="POST" action="{{ route('register') }}">
|
14 | 14 | @csrf
|
15 | 15 |
|
16 | 16 | <div class="flex flex-wrap mb-6">
|
17 |
| - <label for="name" class="block text-grey-darker text-sm font-bold mb-2"> |
| 17 | + <label for="name" class="block text-gray-700 text-sm font-bold mb-2"> |
18 | 18 | {{ __('Name') }}:
|
19 | 19 | </label>
|
20 | 20 |
|
21 |
| - <input id="name" type="text" class="shadow appearance-none border rounded w-full py-2 px-3 text-grey-darker leading-tight focus:outline-none focus:shadow-outline{{ $errors->has('name') ? ' border-red' : '' }}" name="name" value="{{ old('name') }}" required autofocus> |
| 21 | + <input id="name" type="text" class="shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline{{ $errors->has('name') ? ' border-red-500' : '' }}" name="name" value="{{ old('name') }}" required autofocus> |
22 | 22 |
|
23 | 23 | @if ($errors->has('name'))
|
24 |
| - <p class="text-red text-xs italic mt-4"> |
| 24 | + <p class="text-red-500 text-xs italic mt-4"> |
25 | 25 | {{ $errors->first('name') }}
|
26 | 26 | </p>
|
27 | 27 | @endif
|
28 | 28 | </div>
|
29 | 29 |
|
30 | 30 | <div class="flex flex-wrap mb-6">
|
31 |
| - <label for="email" class="block text-grey-darker text-sm font-bold mb-2"> |
| 31 | + <label for="email" class="block text-gray-700 text-sm font-bold mb-2"> |
32 | 32 | {{ __('E-Mail Address') }}:
|
33 | 33 | </label>
|
34 | 34 |
|
35 |
| - <input id="email" type="email" class="shadow appearance-none border rounded w-full py-2 px-3 text-grey-darker leading-tight focus:outline-none focus:shadow-outline{{ $errors->has('email') ? ' border-red' : '' }}" name="email" value="{{ old('email') }}" required> |
| 35 | + <input id="email" type="email" class="shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline{{ $errors->has('email') ? ' border-red-500' : '' }}" name="email" value="{{ old('email') }}" required> |
36 | 36 |
|
37 | 37 | @if ($errors->has('email'))
|
38 |
| - <p class="text-red text-xs italic mt-4"> |
| 38 | + <p class="text-red-500 text-xs italic mt-4"> |
39 | 39 | {{ $errors->first('email') }}
|
40 | 40 | </p>
|
41 | 41 | @endif
|
42 | 42 | </div>
|
43 | 43 |
|
44 | 44 | <div class="flex flex-wrap mb-6">
|
45 |
| - <label for="password" class="block text-grey-darker text-sm font-bold mb-2"> |
| 45 | + <label for="password" class="block text-gray-700 text-sm font-bold mb-2"> |
46 | 46 | {{ __('Password') }}:
|
47 | 47 | </label>
|
48 | 48 |
|
49 |
| - <input id="password" type="password" class="shadow appearance-none border rounded w-full py-2 px-3 text-grey-darker leading-tight focus:outline-none focus:shadow-outline{{ $errors->has('password') ? ' border-red' : '' }}" name="password" required> |
| 49 | + <input id="password" type="password" class="shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline{{ $errors->has('password') ? ' border-red-500' : '' }}" name="password" required> |
50 | 50 |
|
51 | 51 | @if ($errors->has('password'))
|
52 |
| - <p class="text-red text-xs italic mt-4"> |
| 52 | + <p class="text-red-500 text-xs italic mt-4"> |
53 | 53 | {{ $errors->first('password') }}
|
54 | 54 | </p>
|
55 | 55 | @endif
|
56 | 56 | </div>
|
57 | 57 |
|
58 | 58 | <div class="flex flex-wrap mb-6">
|
59 |
| - <label for="password-confirm" class="block text-grey-darker text-sm font-bold mb-2"> |
| 59 | + <label for="password-confirm" class="block text-gray-700 text-sm font-bold mb-2"> |
60 | 60 | {{ __('Confirm Password') }}:
|
61 | 61 | </label>
|
62 | 62 |
|
63 |
| - <input id="password-confirm" type="password" class="shadow appearance-none border rounded w-full py-2 px-3 text-grey-darker leading-tight focus:outline-none focus:shadow-outline" name="password_confirmation" required> |
| 63 | + <input id="password-confirm" type="password" class="shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline" name="password_confirmation" required> |
64 | 64 | </div>
|
65 | 65 |
|
66 | 66 | <div class="flex flex-wrap">
|
67 |
| - <button type="submit" class="inline-block align-middle text-center select-none border font-normal whitespace-no-wrap py-2 px-4 rounded text-base leading-normal no-underline text-blue-lightest bg-blue hover:bg-blue-light"> |
| 67 | + <button type="submit" class="inline-block align-middle text-center select-none border font-bold whitespace-no-wrap py-2 px-4 rounded text-base leading-normal no-underline text-gray-100 bg-blue-500 hover:bg-blue-700"> |
68 | 68 | {{ __('Register') }}
|
69 | 69 | </button>
|
70 | 70 |
|
71 |
| - <p class="w-full text-xs text-center text-grey-dark mt-8 -mb-4"> |
| 71 | + <p class="w-full text-xs text-center text-gray-700 mt-8 -mb-4"> |
72 | 72 | Already have an account?
|
73 |
| - <a class="text-blue hover:text-blue-dark no-underline" href="{{ route('login') }}"> |
| 73 | + <a class="text-blue-500 hover:text-blue-700 no-underline" href="{{ route('login') }}"> |
74 | 74 | Login
|
75 | 75 | </a>
|
76 | 76 | </p>
|
|
0 commit comments