修复注册跳转到 console 页面 添加 account 的默认页面 dashboard Signed-off-by: XiaoLFeng <gm@x-lf.cn>
100 lines
4.8 KiB
PHP
100 lines
4.8 KiB
PHP
<!doctype html>
|
|
<html lang="zh-CN" class="h-full bg-white">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport"
|
|
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<link rel="stylesheet" href="{{ asset('css/app.css') }}">
|
|
<link rel="stylesheet" href="{{ asset('css/flowbite.css') }}">
|
|
@include('modules.head')
|
|
{!! $webHeader !!}
|
|
</head>
|
|
<body class="h-full">
|
|
<div class="flex min-h-full flex-col justify-center px-6 py-12 lg:px-8">
|
|
<div class="sm:mx-auto sm:w-full sm:max-w-sm">
|
|
<img class="mx-auto h-10 w-auto" src="https://tailwindui.com/img/logos/mark.svg?color=indigo&shade=600"
|
|
alt="Your Company">
|
|
<h2 class="mt-10 text-center text-2xl font-bold leading-9 tracking-tight text-gray-900">注册您的账号</h2>
|
|
</div>
|
|
|
|
<div class="mt-10 sm:mx-auto sm:w-full sm:max-w-sm">
|
|
<form class="space-y-6" id="FormData" action="#" onsubmit="return false" method="POST">
|
|
@csrf
|
|
<div>
|
|
<label for="username" class="block text-sm font-medium leading-6 text-gray-900">用户名</label>
|
|
<div class="mt-2">
|
|
<input id="username" name="username" type="text" autocomplete="username" required
|
|
class="block w-full rounded-md border-0 py-1.5 text-gray-900 shadow-sm ring-1 ring-inset ring-gray-300 placeholder:text-gray-400 focus:ring-2 focus:ring-inset focus:ring-indigo-600 sm:text-sm sm:leading-6">
|
|
</div>
|
|
</div>
|
|
|
|
<div>
|
|
<label for="email" class="block text-sm font-medium leading-6 text-gray-900">邮箱地址</label>
|
|
<div class="mt-2">
|
|
<input id="email" name="email" type="email" autocomplete="email" required
|
|
class="block w-full rounded-md border-0 py-1.5 text-gray-900 shadow-sm ring-1 ring-inset ring-gray-300 placeholder:text-gray-400 focus:ring-2 focus:ring-inset focus:ring-indigo-600 sm:text-sm sm:leading-6">
|
|
</div>
|
|
</div>
|
|
|
|
<div>
|
|
<div class="flex items-center justify-between">
|
|
<label for="password" class="block text-sm font-medium leading-6 text-gray-900">密码</label>
|
|
</div>
|
|
<div class="mt-2">
|
|
<input id="password" name="password" type="password" autocomplete="current-password" required
|
|
class="block w-full rounded-md border-0 py-1.5 text-gray-900 shadow-sm ring-1 ring-inset ring-gray-300 placeholder:text-gray-400 focus:ring-2 focus:ring-inset focus:ring-indigo-600 sm:text-sm sm:leading-6">
|
|
</div>
|
|
</div>
|
|
|
|
<div>
|
|
<div class="flex items-center justify-between">
|
|
<label for="password" class="block text-sm font-medium leading-6 text-gray-900">重复密码</label>
|
|
</div>
|
|
<div class="mt-2">
|
|
<input id="password_confirmation" name="password_confirmation" type="password"
|
|
autocomplete="current-password" required
|
|
class="block w-full rounded-md border-0 py-1.5 text-gray-900 shadow-sm ring-1 ring-inset ring-gray-300 placeholder:text-gray-400 focus:ring-2 focus:ring-inset focus:ring-indigo-600 sm:text-sm sm:leading-6">
|
|
</div>
|
|
</div>
|
|
|
|
<div>
|
|
<button type="submit"
|
|
class="flex w-full justify-center rounded-md bg-indigo-600 px-3 py-1.5 text-sm font-semibold leading-6 text-white shadow-sm hover:bg-indigo-500 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-indigo-600"
|
|
onclick="user_change()">
|
|
注册
|
|
</button>
|
|
</div>
|
|
</form>
|
|
|
|
<p class="mt-10 text-center text-sm text-gray-500">
|
|
已经有账号了?
|
|
<a href="{{ route('login') }}" class="font-semibold leading-6 text-indigo-600 hover:text-indigo-500">
|
|
点击登录!</a>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
<script src="{{ asset('js/app.js') }}"></script>
|
|
<script src="{{ asset('js/jquery.js') }}"></script>
|
|
<script type="text/javascript">
|
|
function user_change() {
|
|
$.ajax({
|
|
async: true,
|
|
method: "POST",
|
|
data: $('#FormData').serialize(),
|
|
url: '{{ route('api.auth.register') }}',
|
|
dataType: "json",
|
|
success: function (returnData) {
|
|
if (returnData.output === "Success") {
|
|
window.location.href = '{{ route('account.dashboard') }}'
|
|
} else {
|
|
window.alert("错误!")
|
|
}
|
|
}
|
|
});
|
|
}
|
|
</script>
|
|
{!! $webFooter !!}
|
|
</html>
|