aboutsummaryrefslogtreecommitdiffstats
path: root/resources/views/others/message.edge
blob: 08200dae9b40bbfb41a697d80f9bd44a55f19e2a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
@layout('layouts/v2')

@section('content')
<div class="w-screen bg-purple-200 flex items-center justify-center">
  <div class="w-full max-w-sm bg-white shadow-md rounded px-8 pt-6 pb-8 mb-4" action="/import" method="POST">
    <h1 class="text-gray-700 text-center text-2xl pb-5">
      {{ heading }}
    </h1>
    <p class="text-gray-600 text-sm text-center py-2">
      {{ text }}
    </p>

    <div class="text-center">
      <a class="w-full font-bold text-sm text-blue-500 hover:text-blue-800" href="#" onclick="window.history.back()">
        Go back
      </a>
    </div>
  </div>
</div>
@endsection