Skip to content

Commit

Permalink
インストーラーの改善 (#1160)
Browse files Browse the repository at this point in the history
* メール配信の設定がエラーになる場合のヒントを追加

* インストーラーに問い合わせ先を表示
  • Loading branch information
SofPyon authored Jun 26, 2022
1 parent 7532c1c commit 29fafab
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 8 deletions.
25 changes: 17 additions & 8 deletions resources/views/install/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,10 @@

<app-container medium>
<list-view>
<list-view-card class="text-center">
<p class="text-muted">
<i class="fas fa-door-open fa-2x"></i>
</p>
<p>
<strong>PortalDots へようこそ!</strong>
</p>
<list-view-card class="text-center markdown">
<h2>
PortalDots へようこそ!
</h2>
<p>
はじめまして!<br>
これから 4 ステップに分けて、PortalDots の設定をしましょう。
Expand All @@ -40,12 +37,24 @@
の設定
</steps-list-item>
</steps-list>
<div class="pt-spacing">
<div>
<a href="{{ route('install.portal.edit') }}" class="btn is-primary is-wide">
<strong>設定をはじめる</strong>
</a>
</div>
</list-view-card>
</list-view>
<list-view>
<template v-slot:title>インストールのサポート</template>
<template v-slot:description>PortalDotsのインストールでわからないことがあれば、下記のお問い合わせ先までお気軽にお問い合わせください。</template>
<list-view-card class="markdown">
<ul>
<li>LINE 公式アカウント: <a href="https://lin.ee/aeee9s9" target="_blank">@aeee9s9</a></li>
<li>メールアドレス: <a href="mailto:support@portaldots.com" target="_blank">support@portaldots.com</a></li>
<li>Twitter: <a href="https://twitter.com/PortalDots" target="_blank">@PortalDots</a></li>
</ul>
<p>※PortalDots開発チームはボランティアによる活動です。こちらの連絡手段でのサポートは解決を保証するものではありません。予めご了承ください。</p>
</list-view-card>
</list-view>
</app-container>
@endsection
5 changes: 5 additions & 0 deletions resources/views/install/mail/form.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@
<template v-slot:label>
{{ $labels[$key] }}
</template>
<template v-slot:description>
@if ($key === 'MAIL_HOST')
メール配信の設定がエラーになる場合は、先頭に<code>ssl://</code>を入力してみてください。
@endif
</template>
<input id="{{ $key }}" type="text" class="form-control @error($key) is-invalid @enderror"
name="{{ $key }}"
value="{{ old($key, $key === 'MAIL_FROM_NAME' && empty($value) ? config('app.name') : $value) }}"
Expand Down

0 comments on commit 29fafab

Please sign in to comment.