forgot-password.blade.php
1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
@extends('layout.authorize', ['title' => 'Восстановление пароля'])
@section('image')
<img
aria-hidden="true"
class="object-cover w-full h-full dark:hidden"
src="{{ asset('assets/img/forgot-password-office.jpeg') }}"
alt="Office"
/>
<img
aria-hidden="true"
class="hidden object-cover w-full h-full dark:block"
src="{{ asset('assets/img/forgot-password-office-dark.jpeg') }}"
alt="Office"
/>
@endsection
@section('content')
<h1
class="mb-4 text-xl font-semibold text-gray-700 dark:text-gray-200"
>
Forgot password
</h1>
<label class="block text-sm">
<span class="text-gray-700 dark:text-gray-400">Email</span>
<input
class="block w-full mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray form-input"
placeholder="Jane Doe"
/>
</label>
<!-- You should use a button here, as the anchor is only used for the example -->
<a
class="block w-full px-4 py-2 mt-4 text-sm font-medium leading-5 text-center text-white transition-colors duration-150 bg-purple-600 border border-transparent rounded-lg active:bg-purple-600 hover:bg-purple-700 focus:outline-none focus:shadow-outline-purple"
href="./login.html"
>
Recover password
</a>
@endsection