PortIO/resources/views/index.blade.php

18 lines
397 B
PHP
Raw Normal View History

2023-03-14 14:33:06 +00:00
<!DOCTYPE html>
<html data-bs-theme="auto">
<head>
<title>{{ config('app.display_name') }}</title>
<meta name="csrf-token" content="{{ csrf_token() }}">
<meta chrset="utf-8">
2023-05-14 12:22:54 +00:00
<meta name="viewport" content="width=device-width, initial-scale=1">
2023-03-14 14:33:06 +00:00
</head>
<body>
2023-07-21 16:01:40 +00:00
<span>欢迎使用: {{ config('app.display_name') }}</span>
2023-03-14 14:33:06 +00:00
2023-07-21 16:01:40 +00:00
<a href="{{ route('login') }}">登录</a>
2023-03-14 14:33:06 +00:00
</body>
</html>