13 lines
617 B
HTML
13 lines
617 B
HTML
<div class="flex items-center justify-center min-h-[70vh]">
|
|
<div class="text-center">
|
|
<div class="text-6xl text-red-500 mb-4">
|
|
<i class="fas fa-exclamation-circle"></i>
|
|
</div>
|
|
<h1 class="text-4xl font-bold text-gray-800 mb-4">{{.StatusCode}}</h1>
|
|
<p class="text-xl text-gray-600 mb-8">{{if .ErrorMessage}}{{.ErrorMessage}}{{else}}发生错误{{end}}</p>
|
|
<a href="/" class="inline-block px-6 py-3 bg-indigo-600 text-white rounded-md hover:bg-indigo-700 transition-colors">
|
|
<i class="fas fa-home mr-2"></i> 返回首页
|
|
</a>
|
|
</div>
|
|
</div>
|