| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <!DOCTYPE html>
- <html>
- <head>
- <!--
- ** 본 메일 폼은 원본이며 실제 사용은 form 안에 있는 email.blade.php 를 사용합니다.
- ** 아래 주소에서 변환이 가능합니다. link, script 주소는 삭제해주세요.
- https://templates.mailchimp.com/resources/inline-css/
- -->
- <meta charset="utf-8"/>
- <meta name="viewport" content="width=device-width, initial-scale=1"/>
- <title>{{ config('site_title', config('app.name')) }}</title>
- <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous"/>
- <link rel="preconnect" href="https://fonts.googleapis.com"/>
- <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin/>
- <link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@800&display=swap" rel="stylesheet">
- <style>
- #app {
- width: 100%;
- background: #eee;
- padding: 20px;
- }
- #app .container {
- max-width: 800px;
- margin: 0 auto;
- }
- header {
- background: #1d618c;
- height: 50px;
- line-height: 50px;
- text-align: center;
- border: 1px solid #aaa;
- border-width: 1px 1px 0 1px;
- }
- header a {
- color: #fff;
- font-family: "Open-Sans-Extrabold";
- font-size: 21px;
- font-weight: bold;
- text-decoration: none;
- }
- header a:hover,
- header a:focus,
- header a:active {
- text-decoration: underline;
- }
- main {
- display: block;
- background: #fff;
- min-height: 500px;
- border: 1px solid #aaa;
- padding: 13px;
- }
- footer {
- padding: 13px;
- background: #2f2f2f;
- color: #adadad;
- font-size: 12px;
- border: 1px solid #aaa;
- border-width: 0 1px 1px 1px;
- }
- </style>
- </head>
- <body>
- <div id="app">
- <div class="container">
- <header>
- <a href="{{ url('/') }}">
- {{ strtoupper(config('site_title', config('app.name'))) }}
- </a>
- </header>
- <main>
- @isset($content)
- {!! $content !!}
- @endisset
- </main>
- <footer>
- ※ 본 메일은 발신전용으로 회신되지 않습니다. 문의사항은 고객지원을 이용해 주시기 바랍니다.
- <ul class="list-unstyled mt-1">
- <li>{{ config('company_name') }} | 대표자 : {{ config('company_owner') }} | 정보관리책임자 : {{ config('company_admin_email') }}</li>
- <li>사업자등록번호 : {{ config('company_reg_no') }} | 통신판매신고번호 : {{ config('company_retail_sale_no') }}</li>
- <li>대표전화 : {{ config('company_phone') }} | 문의사항 : {{ config('company_admin_email') }}</li>
- <li>주소 : {{ config('company_address') }} | 우편번호 : {{ config('company_zip_code') }}</li>
- </ul>
- <cite>Copyright ⓒ {{ config('site_title', config('app.name')) }} Corp. All Right Reserved.</cite>
- </footer>
- </div>
- </div>
- <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js" integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN" crossorigin="anonymous"></script>
- </body>
- </html>
|