blessing-skin-server/resources/views/setup/wizard/finish.tpl

25 lines
552 B
PHP
Raw Normal View History

@extends('setup.master')
2016-07-28 15:10:08 +08:00
@section('content')
2016-12-31 17:14:19 +08:00
<h1>{{ trans('setup.wizard.finish.title') }}
@include('setup.wizard.language')
</h1>
2016-12-30 17:44:53 +08:00
<p>{{ trans('setup.wizard.finish.text') }}</p>
2016-07-28 15:10:08 +08:00
<table class="form-table install-success">
<tr>
2016-12-30 17:44:53 +08:00
<th>{{ trans('auth.email') }}</th>
2016-07-28 15:10:08 +08:00
<td>{{ $email }}</td>
</tr>
<tr>
2016-12-30 17:44:53 +08:00
<th>{{ trans('auth.password') }}</th>
2016-07-28 15:10:08 +08:00
<td><p><em>{{ $password }}</em></p></td>
</tr>
</table>
<p class="step">
2016-12-30 15:01:34 +08:00
<a href="../" class="button button-large">{{ trans('general.index') }}</a>
2016-07-28 15:10:08 +08:00
</p>
@endsection