36 lines
1.4 KiB
PHP
36 lines
1.4 KiB
PHP
<html lang="zh">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>注册</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link href="{{ mix('/css/app.css') }}" rel="stylesheet"/>
|
|
</head>
|
|
<body>
|
|
@include("common.header")
|
|
<form class="w-full lg:w-1/2 border-2 mx-auto my-2" action="" method="post" enctype="multipart/form-data">
|
|
<div class="block text-lg font-bold ml-4 mt-2">登录</div>
|
|
<label class="block my-2">
|
|
用户名
|
|
<input class="form-input border-0 border-b-2 w-full" type="text" name="name" value="{{ old("name") }}" placeholder="用户名">
|
|
</label>
|
|
<label class="block my-2">
|
|
邮箱
|
|
<input class="form-input border-0 border-b-2 w-full" type="email" name="email" value="{{ old("email") }}" placeholder="邮箱">
|
|
</label>
|
|
<label class="block my-2">
|
|
密码
|
|
<input class="form-input border-0 border-b-2 w-full" minlength="5" type="password" name="password" value="{{ old("password") }}" placeholder="密码">
|
|
</label>
|
|
@if($errors->any())
|
|
@foreach ($errors->all() as $error)
|
|
<div class="bg-red-600 text-white">错误:{{ $error }}</div>
|
|
@endforeach
|
|
@endif
|
|
<div class="block my-2 text-center">
|
|
<input class="px-6 py-2 inline-block rounded-full bg-cyan-600 text-white" type="submit" value="注册">
|
|
</div>
|
|
</form>
|
|
@include("common.footer")
|
|
</body>
|
|
</html>
|