|
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 | {{ __('Reset Password') }}
|
11 | 11 | </div>
|
12 | 12 |
|
|
16 | 16 | <input type="hidden" name="token" value="{{ $token }}">
|
17 | 17 |
|
18 | 18 | <div class="flex flex-wrap mb-6">
|
19 |
| - <label for="email" class="block text-grey-darker text-sm font-bold mb-2"> |
| 19 | + <label for="email" class="block text-gray-700 text-sm font-bold mb-2"> |
20 | 20 | {{ __('E-Mail Address') }}:
|
21 | 21 | </label>
|
22 | 22 |
|
23 |
| - <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 autofocus> |
| 23 | + <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' : '' }}" name="email" value="{{ old('email') }}" required autofocus> |
24 | 24 |
|
25 | 25 | @if ($errors->has('email'))
|
26 |
| - <p class="text-red text-xs italic mt-4"> |
| 26 | + <p class="text-red-500-500 text-xs italic mt-4"> |
27 | 27 | {{ $errors->first('email') }}
|
28 | 28 | </p>
|
29 | 29 | @endif
|
30 | 30 | </div>
|
31 | 31 |
|
32 | 32 | <div class="flex flex-wrap mb-6">
|
33 |
| - <label for="password" class="block text-grey-darker text-sm font-bold mb-2"> |
| 33 | + <label for="password" class="block text-gray-700 text-sm font-bold mb-2"> |
34 | 34 | {{ __('Password') }}:
|
35 | 35 | </label>
|
36 | 36 |
|
37 |
| - <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> |
| 37 | + <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' : '' }}" name="password" required> |
38 | 38 |
|
39 | 39 | @if ($errors->has('password'))
|
40 |
| - <p class="text-red text-xs italic mt-4"> |
| 40 | + <p class="text-red-500 text-xs italic mt-4"> |
41 | 41 | {{ $errors->first('password') }}
|
42 | 42 | </p>
|
43 | 43 | @endif
|
44 | 44 | </div>
|
45 | 45 |
|
46 | 46 | <div class="flex flex-wrap mb-6">
|
47 |
| - <label for="password-confirm" class="block text-grey-darker text-sm font-bold mb-2"> |
| 47 | + <label for="password-confirm" class="block text-gray-700 text-sm font-bold mb-2"> |
48 | 48 | {{ __('Confirm Password') }}:
|
49 | 49 | </label>
|
50 | 50 |
|
51 |
| - <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> |
| 51 | + <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> |
52 | 52 | </div>
|
53 | 53 |
|
54 | 54 | <div class="flex flex-wrap">
|
55 |
| - <button type="submit" class="bg-blue hover:bg-blue-dark text-white font-bold py-2 px-4 rounded focus:outline-none focus:shadow-outline"> |
| 55 | + <button type="submit" class="bg-blue-500 hover:bg-blue-700 text-gray-100 font-bold font-bold py-2 px-4 rounded focus:outline-none focus:shadow-outline"> |
56 | 56 | {{ __('Reset Password') }}
|
57 | 57 | </button>
|
58 | 58 | </div>
|
|
0 commit comments