2016-11-18 16:46:58 +08:00
|
|
|
@extends('setup.wizard.master')
|
2016-07-28 15:10:08 +08:00
|
|
|
|
|
|
|
@section('content')
|
|
|
|
<h1>填写信息</h1>
|
|
|
|
<p>您需要填写一些基本信息。无需担心填错,这些信息以后可以再次修改。</p>
|
|
|
|
|
2016-11-18 16:46:58 +08:00
|
|
|
<form id="setup" method="post" action="{{ url('setup/finish') }}" novalidate="novalidate">
|
2016-07-28 15:10:08 +08:00
|
|
|
<table class="form-table">
|
|
|
|
<tr>
|
|
|
|
<th scope="row"><label for="email">管理员邮箱</label></th>
|
|
|
|
<td>
|
|
|
|
<input name="email" type="email" id="email" size="25" value="" />
|
|
|
|
<p>这是唯一的超级管理员账号,可 添加/取消 其他管理员。</p>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr class="form-field form-required">
|
|
|
|
<th scope="row"><label for="password">密码</label></th>
|
|
|
|
<td>
|
|
|
|
<input type="password" name="password" id="password" class="regular-text" autocomplete="off" />
|
|
|
|
<p>
|
|
|
|
<span class="description important">
|
|
|
|
<b>重要:</b>您将需要此密码来登录管理皮肤站,请将其保存在安全的位置。
|
|
|
|
</span>
|
|
|
|
</p>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr class="form-field form-required">
|
2016-11-18 16:46:58 +08:00
|
|
|
<th scope="row"><label for="password_confirmation">重复密码</label></th>
|
2016-07-28 15:10:08 +08:00
|
|
|
<td>
|
2016-11-18 16:46:58 +08:00
|
|
|
<input type="password" name="password_confirmation" id="password_confirmation" autocomplete="off" />
|
2016-07-28 15:10:08 +08:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2016-11-18 16:46:58 +08:00
|
|
|
<th scope="row"><label for="site_name">站点名称</label></th>
|
2016-07-28 15:10:08 +08:00
|
|
|
<td>
|
2016-11-18 16:46:58 +08:00
|
|
|
<input name="site_name" type="text" id="site_name" size="25" value="Blessing Skin Server" />
|
2016-07-28 15:10:08 +08:00
|
|
|
<p>
|
|
|
|
<span class="description important">
|
2016-11-18 16:46:58 +08:00
|
|
|
将会显示在首页以及标题栏
|
2016-07-28 15:10:08 +08:00
|
|
|
</span>
|
|
|
|
</p>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
|
2016-11-18 16:46:58 +08:00
|
|
|
@if (count($errors) > 0)
|
|
|
|
<div class="alert alert-warning" role="alert">
|
|
|
|
<ul>
|
|
|
|
@foreach ($errors->all() as $error)
|
|
|
|
<li>{{ $error }}</li>
|
|
|
|
@endforeach
|
|
|
|
</ul>
|
|
|
|
</div>
|
2016-08-28 18:34:41 +08:00
|
|
|
@endif
|
2016-07-28 15:10:08 +08:00
|
|
|
|
|
|
|
<p class="step">
|
2016-11-18 16:46:58 +08:00
|
|
|
<input type="submit" name="submit" id="submit" class="button button-large" value="开始安装" />
|
2016-07-28 15:10:08 +08:00
|
|
|
</p>
|
|
|
|
</form>
|
|
|
|
@endsection
|