updated email templates
This commit is contained in:
@@ -1,103 +1,130 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}" xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office">
|
<html
|
||||||
|
lang="{{ str_replace('_', '-', app()->getLocale()) }}"
|
||||||
|
xmlns="http://www.w3.org/1999/xhtml"
|
||||||
|
xmlns:v="urn:schemas-microsoft-com:vml"
|
||||||
|
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||||
|
>
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||||
<title>STEMMechanics - Verify Email Address</title>
|
<title>STEMMechanics - Forgot Password</title>
|
||||||
|
<link
|
||||||
|
rel="noopener"
|
||||||
|
target="_blank"
|
||||||
|
href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;800&display=swap"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<!--[if gte mso 9]>
|
||||||
|
<xml>
|
||||||
|
<o:OfficeDocumentSettings>
|
||||||
|
<o:AllowPNG />
|
||||||
|
<o:PixelsPerInch>96</o:PixelsPerInch>
|
||||||
|
</o:OfficeDocumentSettings>
|
||||||
|
</xml>
|
||||||
|
<![endif]-->
|
||||||
<style>
|
<style>
|
||||||
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;800&display=swap');
|
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;800&display=swap");
|
||||||
* {
|
|
||||||
box-sizing: border-box;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
font-size: 1.1rem;
|
|
||||||
font-family: Nunito, Arial, Helvetica, sans-serif !important;
|
|
||||||
color: #000000;
|
|
||||||
padding: 2rem;
|
|
||||||
-webkit-font-smoothing: antialiased;
|
|
||||||
-moz-osx-font-smoothing: grayscale
|
|
||||||
}
|
|
||||||
|
|
||||||
div.main {
|
|
||||||
margin: 0 auto;
|
|
||||||
background-color: #ffffff;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.footer {
|
|
||||||
margin: 2rem auto;
|
|
||||||
max-width: 48rem;
|
|
||||||
font-size: 70%;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
a.brand {
|
|
||||||
display: block;
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
padding: 0 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
a.brand:hover {
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
h2 {
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
p {
|
|
||||||
margin-bottom: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
a.brand img {
|
|
||||||
width: 100%;
|
|
||||||
max-width: 100%;
|
|
||||||
object-fit: contain;
|
|
||||||
}
|
|
||||||
|
|
||||||
.code {
|
|
||||||
display: block;
|
|
||||||
font-size: 200%;
|
|
||||||
text-align: center;
|
|
||||||
margin-top: 2rem;
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
letter-spacing: 0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.feedback {
|
|
||||||
font-size: 90%;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.border {
|
|
||||||
border-top: 1px solid #ddd;
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
a, a:visited, a:hover {
|
|
||||||
color: #2563EB;
|
|
||||||
}
|
|
||||||
|
|
||||||
a:hover {
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="main">
|
<table
|
||||||
<a href="https://www.stemmechanics.com.au/" class="brand">
|
cellspacing="0"
|
||||||
<img alt="STEMMechanics Logo" src="{{ $message->embed(public_path('img').'/logo.png') }}">
|
cellpadding="0"
|
||||||
</a>
|
border="0"
|
||||||
<h2>Hey {{ $user?->username }},</h2>
|
role="presentation"
|
||||||
<p>We just need to confirm that this is your new email address. Click this link <a href="https://www.stemmechanics.com.au/verify-email?code={{ $code }}">stemmechanics.com.au/verify-email</a> and if you are asked, use the confirm code:</p>
|
style="
|
||||||
<strong class="code">{{ $code }}</strong>
|
width: 100%;
|
||||||
<div class="border"></div>
|
padding: 2rem;
|
||||||
<p class="feedback">Need help or got feedback? <a href="https://www.stemmechanics.com.au/contact">Contact us</a> or touch base at <a href="https://twitter.com/stemmechanics">@stemmechanics</a>.</p>
|
font-size: 1.1rem;
|
||||||
</div>
|
color: #000000;
|
||||||
<div class="footer">Sent by STEMMechanics · <a href="https://www.stemmechanics.com.au/">Visit our Website</a> · <a href="https://twitter.com/stemmechanics">@stemmechanics</a><br>PO Box 36, Edmonton, QLD 4869, Australia</div>
|
font-family: Nunito, Arial, Helvetica, sans-serif;
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
-moz-osx-font-smoothing: grayscale;
|
||||||
|
"
|
||||||
|
>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<a href="https://www.stemmechanics.com.au/">
|
||||||
|
<img
|
||||||
|
alt="STEMMechanics Logo"
|
||||||
|
src="{{ $message->embed(public_path('img').'/logo.png') }}"
|
||||||
|
width="400"
|
||||||
|
height="62"
|
||||||
|
/>
|
||||||
|
</a>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><h2>Hey {{ $user?->username }},</h2></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
We just need to confirm that this is your new email address. Click this link <a href="https://www.stemmechanics.com.au/verify-email?code={{ $code }}">stemmechanics.com.au/verify-email</a> and if you are asked, use the confirm code:
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td
|
||||||
|
align="center"
|
||||||
|
style="
|
||||||
|
font-size: 200%;
|
||||||
|
text-align: center;
|
||||||
|
padding-top: 2rem;
|
||||||
|
padding-bottom: 2rem;
|
||||||
|
letter-spacing: 0.5rem;
|
||||||
|
"
|
||||||
|
>
|
||||||
|
<strong>{{ $code }}</strong>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td style="padding-bottom: 2rem">
|
||||||
|
But if you didn't ask to reset your password, you can delete
|
||||||
|
this email and your password will remain the same.
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td
|
||||||
|
align="center"
|
||||||
|
style="
|
||||||
|
font-size: 90%;
|
||||||
|
text-align: center;
|
||||||
|
padding-top: 2rem;
|
||||||
|
padding-bottom: 2rem;
|
||||||
|
border-top: 1px solid #ddd;
|
||||||
|
"
|
||||||
|
>
|
||||||
|
Need help or got feedback?
|
||||||
|
<a href="https://www.stemmechanics.com.au/contact"
|
||||||
|
>Contact us</a
|
||||||
|
>
|
||||||
|
or touch base at
|
||||||
|
<a href="https://twitter.com/stemmechanics"
|
||||||
|
>@stemmechanics</a
|
||||||
|
>.
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td
|
||||||
|
align="center"
|
||||||
|
style="
|
||||||
|
font-size: 80%;
|
||||||
|
text-align: center;
|
||||||
|
padding-top: 1rem;
|
||||||
|
padding-bottom: 2rem;
|
||||||
|
"
|
||||||
|
>
|
||||||
|
Sent by STEMMechanics ·
|
||||||
|
<a href="https://www.stemmechanics.com.au/"
|
||||||
|
>Visit our Website</a
|
||||||
|
>
|
||||||
|
·
|
||||||
|
<a href="https://twitter.com/stemmechanics"
|
||||||
|
>@stemmechanics</a
|
||||||
|
><br />PO Box 36, Edmonton, QLD 4869, Australia
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@@ -1,116 +1,115 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}" xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office">
|
<html
|
||||||
|
lang="{{ str_replace('_', '-', app()->getLocale()) }}"
|
||||||
|
xmlns="http://www.w3.org/1999/xhtml"
|
||||||
|
xmlns:v="urn:schemas-microsoft-com:vml"
|
||||||
|
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||||
|
>
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||||
<title>STEMMechanics - Changed Password</title>
|
<title>STEMMechanics - Forgot Password</title>
|
||||||
|
<link
|
||||||
|
rel="noopener"
|
||||||
|
target="_blank"
|
||||||
|
href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;800&display=swap"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<!--[if gte mso 9]>
|
||||||
|
<xml>
|
||||||
|
<o:OfficeDocumentSettings>
|
||||||
|
<o:AllowPNG />
|
||||||
|
<o:PixelsPerInch>96</o:PixelsPerInch>
|
||||||
|
</o:OfficeDocumentSettings>
|
||||||
|
</xml>
|
||||||
|
<![endif]-->
|
||||||
<style>
|
<style>
|
||||||
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;800&display=swap');
|
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;800&display=swap");
|
||||||
* {
|
|
||||||
box-sizing: border-box;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
font-size: 1.1rem;
|
|
||||||
font-family: Nunito, Arial, Helvetica, sans-serif !important;
|
|
||||||
color: #000000;
|
|
||||||
padding: 2rem;
|
|
||||||
-webkit-font-smoothing: antialiased;
|
|
||||||
-moz-osx-font-smoothing: grayscale
|
|
||||||
}
|
|
||||||
|
|
||||||
div.main {
|
|
||||||
margin: 0 auto;
|
|
||||||
background-color: #ffffff;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.footer {
|
|
||||||
margin: 2rem auto;
|
|
||||||
max-width: 48rem;
|
|
||||||
font-size: 70%;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
a.brand {
|
|
||||||
display: block;
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
padding: 0 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
a.brand:hover {
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
h2 {
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
p {
|
|
||||||
margin-bottom: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
a.brand img {
|
|
||||||
width: 100%;
|
|
||||||
max-width: 100%;
|
|
||||||
object-fit: contain;
|
|
||||||
}
|
|
||||||
|
|
||||||
.code {
|
|
||||||
display: block;
|
|
||||||
font-size: 200%;
|
|
||||||
text-align: center;
|
|
||||||
margin-top: 2rem;
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
letter-spacing: 0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.feedback {
|
|
||||||
font-size: 90%;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.border {
|
|
||||||
border-top: 1px solid #ddd;
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
a, a:visited, a:hover {
|
|
||||||
color: #2563EB;
|
|
||||||
}
|
|
||||||
|
|
||||||
a:hover {
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.list {
|
|
||||||
padding-left: 2rem;
|
|
||||||
padding-right: 2rem;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.list ul {
|
|
||||||
list-style-position: inside;
|
|
||||||
display: inline-block;
|
|
||||||
text-align: left;
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="main">
|
<table
|
||||||
<a href="https://www.stemmechanics.com.au/" class="brand">
|
cellspacing="0"
|
||||||
<img alt="STEMMechanics Logo" src="{{ $message->embed(public_path('img').'/logo.png') }}">
|
cellpadding="0"
|
||||||
</a>
|
border="0"
|
||||||
<h2>Yo {{ $user?->username }}</h2>
|
role="presentation"
|
||||||
<p>Just a quick word that your email has been changed to {{ $new_email }}.</p>
|
style="
|
||||||
<p>If this was not you, please contact us by replying to this email so we can disable your account.</p>
|
width: 100%;
|
||||||
<div class="border"></div>
|
padding: 2rem;
|
||||||
<p class="feedback">Need help or got feedback? <a href="https://www.stemmechanics.com.au/contact">Contact us</a> or touch base at <a href="https://twitter.com/stemmechanics">@stemmechanics</a>.</p>
|
font-size: 1.1rem;
|
||||||
</div>
|
color: #000000;
|
||||||
<div class="footer">Sent by STEMMechanics · <a href="https://www.stemmechanics.com.au/">Visit our Website</a> · <a href="https://twitter.com/stemmechanics">@stemmechanics</a><br>PO Box 36, Edmonton, QLD 4869, Australia</div>
|
font-family: Nunito, Arial, Helvetica, sans-serif;
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
-moz-osx-font-smoothing: grayscale;
|
||||||
|
"
|
||||||
|
>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<a href="https://www.stemmechanics.com.au/">
|
||||||
|
<img
|
||||||
|
alt="STEMMechanics Logo"
|
||||||
|
src="{{ $message->embed(public_path('img').'/logo.png') }}"
|
||||||
|
width="400"
|
||||||
|
height="62"
|
||||||
|
/>
|
||||||
|
</a>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><h2>Yo {{ $user?->username }}</h2></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td style="padding-bottom: 2rem">
|
||||||
|
Just a quick word that your email has been changed to {{ $new_email }}.
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td style="padding-bottom: 2rem">
|
||||||
|
If this was not you, please contact us by replying to this email so we can disable your account.
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td
|
||||||
|
align="center"
|
||||||
|
style="
|
||||||
|
font-size: 90%;
|
||||||
|
text-align: center;
|
||||||
|
padding-top: 2rem;
|
||||||
|
padding-bottom: 2rem;
|
||||||
|
border-top: 1px solid #ddd;
|
||||||
|
"
|
||||||
|
>
|
||||||
|
Need help or got feedback?
|
||||||
|
<a href="https://www.stemmechanics.com.au/contact"
|
||||||
|
>Contact us</a
|
||||||
|
>
|
||||||
|
or touch base at
|
||||||
|
<a href="https://twitter.com/stemmechanics"
|
||||||
|
>@stemmechanics</a
|
||||||
|
>.
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td
|
||||||
|
align="center"
|
||||||
|
style="
|
||||||
|
font-size: 80%;
|
||||||
|
text-align: center;
|
||||||
|
padding-top: 1rem;
|
||||||
|
padding-bottom: 2rem;
|
||||||
|
"
|
||||||
|
>
|
||||||
|
Sent by STEMMechanics ·
|
||||||
|
<a href="https://www.stemmechanics.com.au/"
|
||||||
|
>Visit our Website</a
|
||||||
|
>
|
||||||
|
·
|
||||||
|
<a href="https://twitter.com/stemmechanics"
|
||||||
|
>@stemmechanics</a
|
||||||
|
><br />PO Box 36, Edmonton, QLD 4869, Australia
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@@ -1,116 +1,115 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}" xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office">
|
<html
|
||||||
|
lang="{{ str_replace('_', '-', app()->getLocale()) }}"
|
||||||
|
xmlns="http://www.w3.org/1999/xhtml"
|
||||||
|
xmlns:v="urn:schemas-microsoft-com:vml"
|
||||||
|
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||||
|
>
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||||
<title>STEMMechanics - Changed Password</title>
|
<title>STEMMechanics - Forgot Password</title>
|
||||||
|
<link
|
||||||
|
rel="noopener"
|
||||||
|
target="_blank"
|
||||||
|
href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;800&display=swap"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<!--[if gte mso 9]>
|
||||||
|
<xml>
|
||||||
|
<o:OfficeDocumentSettings>
|
||||||
|
<o:AllowPNG />
|
||||||
|
<o:PixelsPerInch>96</o:PixelsPerInch>
|
||||||
|
</o:OfficeDocumentSettings>
|
||||||
|
</xml>
|
||||||
|
<![endif]-->
|
||||||
<style>
|
<style>
|
||||||
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;800&display=swap');
|
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;800&display=swap");
|
||||||
* {
|
|
||||||
box-sizing: border-box;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
font-size: 1.1rem;
|
|
||||||
font-family: Nunito, Arial, Helvetica, sans-serif !important;
|
|
||||||
color: #000000;
|
|
||||||
padding: 2rem;
|
|
||||||
-webkit-font-smoothing: antialiased;
|
|
||||||
-moz-osx-font-smoothing: grayscale
|
|
||||||
}
|
|
||||||
|
|
||||||
div.main {
|
|
||||||
margin: 0 auto;
|
|
||||||
background-color: #ffffff;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.footer {
|
|
||||||
margin: 2rem auto;
|
|
||||||
max-width: 48rem;
|
|
||||||
font-size: 70%;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
a.brand {
|
|
||||||
display: block;
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
padding: 0 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
a.brand:hover {
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
h2 {
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
p {
|
|
||||||
margin-bottom: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
a.brand img {
|
|
||||||
width: 100%;
|
|
||||||
max-width: 100%;
|
|
||||||
object-fit: contain;
|
|
||||||
}
|
|
||||||
|
|
||||||
.code {
|
|
||||||
display: block;
|
|
||||||
font-size: 200%;
|
|
||||||
text-align: center;
|
|
||||||
margin-top: 2rem;
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
letter-spacing: 0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.feedback {
|
|
||||||
font-size: 90%;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.border {
|
|
||||||
border-top: 1px solid #ddd;
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
a, a:visited, a:hover {
|
|
||||||
color: #2563EB;
|
|
||||||
}
|
|
||||||
|
|
||||||
a:hover {
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.list {
|
|
||||||
padding-left: 2rem;
|
|
||||||
padding-right: 2rem;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.list ul {
|
|
||||||
list-style-position: inside;
|
|
||||||
display: inline-block;
|
|
||||||
text-align: left;
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="main">
|
<table
|
||||||
<a href="https://www.stemmechanics.com.au/" class="brand">
|
cellspacing="0"
|
||||||
<img alt="STEMMechanics Logo" src="{{ $message->embed(public_path('img').'/logo.png') }}">
|
cellpadding="0"
|
||||||
</a>
|
border="0"
|
||||||
<h2>Yo {{ $user?->username }}</h2>
|
role="presentation"
|
||||||
<p>Just a quick word that your password has been changed.</p>
|
style="
|
||||||
<p>If this was not you, please contact us by replying to this email so we can disable your account.</p>
|
width: 100%;
|
||||||
<div class="border"></div>
|
padding: 2rem;
|
||||||
<p class="feedback">Need help or got feedback? <a href="https://www.stemmechanics.com.au/contact">Contact us</a> or touch base at <a href="https://twitter.com/stemmechanics">@stemmechanics</a>.</p>
|
font-size: 1.1rem;
|
||||||
</div>
|
color: #000000;
|
||||||
<div class="footer">Sent by STEMMechanics · <a href="https://www.stemmechanics.com.au/">Visit our Website</a> · <a href="https://twitter.com/stemmechanics">@stemmechanics</a><br>PO Box 36, Edmonton, QLD 4869, Australia</div>
|
font-family: Nunito, Arial, Helvetica, sans-serif;
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
-moz-osx-font-smoothing: grayscale;
|
||||||
|
"
|
||||||
|
>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<a href="https://www.stemmechanics.com.au/">
|
||||||
|
<img
|
||||||
|
alt="STEMMechanics Logo"
|
||||||
|
src="{{ $message->embed(public_path('img').'/logo.png') }}"
|
||||||
|
width="400"
|
||||||
|
height="62"
|
||||||
|
/>
|
||||||
|
</a>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><h2>Yo {{ $user?->username }}</h2></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td style="padding-bottom: 2rem">
|
||||||
|
Just a quick word that your password has been changed.
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td style="padding-bottom: 2rem">
|
||||||
|
If this was not you, please contact us by replying to this email so we can disable your account.
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td
|
||||||
|
align="center"
|
||||||
|
style="
|
||||||
|
font-size: 90%;
|
||||||
|
text-align: center;
|
||||||
|
padding-top: 2rem;
|
||||||
|
padding-bottom: 2rem;
|
||||||
|
border-top: 1px solid #ddd;
|
||||||
|
"
|
||||||
|
>
|
||||||
|
Need help or got feedback?
|
||||||
|
<a href="https://www.stemmechanics.com.au/contact"
|
||||||
|
>Contact us</a
|
||||||
|
>
|
||||||
|
or touch base at
|
||||||
|
<a href="https://twitter.com/stemmechanics"
|
||||||
|
>@stemmechanics</a
|
||||||
|
>.
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td
|
||||||
|
align="center"
|
||||||
|
style="
|
||||||
|
font-size: 80%;
|
||||||
|
text-align: center;
|
||||||
|
padding-top: 1rem;
|
||||||
|
padding-bottom: 2rem;
|
||||||
|
"
|
||||||
|
>
|
||||||
|
Sent by STEMMechanics ·
|
||||||
|
<a href="https://www.stemmechanics.com.au/"
|
||||||
|
>Visit our Website</a
|
||||||
|
>
|
||||||
|
·
|
||||||
|
<a href="https://twitter.com/stemmechanics"
|
||||||
|
>@stemmechanics</a
|
||||||
|
><br />PO Box 36, Edmonton, QLD 4869, Australia
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@@ -1,58 +1,115 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}" xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office">
|
<html
|
||||||
|
lang="{{ str_replace('_', '-', app()->getLocale()) }}"
|
||||||
|
xmlns="http://www.w3.org/1999/xhtml"
|
||||||
|
xmlns:v="urn:schemas-microsoft-com:vml"
|
||||||
|
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||||
|
>
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||||
<title>STEMMechanics - Contact from Website</title>
|
<title>STEMMechanics - Forgot Password</title>
|
||||||
|
<link
|
||||||
|
rel="noopener"
|
||||||
|
target="_blank"
|
||||||
|
href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;800&display=swap"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<!--[if gte mso 9]>
|
||||||
|
<xml>
|
||||||
|
<o:OfficeDocumentSettings>
|
||||||
|
<o:AllowPNG />
|
||||||
|
<o:PixelsPerInch>96</o:PixelsPerInch>
|
||||||
|
</o:OfficeDocumentSettings>
|
||||||
|
</xml>
|
||||||
|
<![endif]-->
|
||||||
<style>
|
<style>
|
||||||
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;800&display=swap');
|
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;800&display=swap");
|
||||||
* {
|
|
||||||
box-sizing: border-box;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
font-size: 1.1rem;
|
|
||||||
font-family: Nunito, Arial, Helvetica, sans-serif !important;
|
|
||||||
color: #000000;
|
|
||||||
padding: 2rem;
|
|
||||||
-webkit-font-smoothing: antialiased;
|
|
||||||
-moz-osx-font-smoothing: grayscale
|
|
||||||
}
|
|
||||||
|
|
||||||
div.main {
|
|
||||||
margin: 0 auto;
|
|
||||||
background-color: #ffffff;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.footer {
|
|
||||||
margin: 2rem auto;
|
|
||||||
max-width: 48rem;
|
|
||||||
font-size: 70%;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
p {
|
|
||||||
margin-bottom: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
a, a:visited, a:hover {
|
|
||||||
color: #2563EB;
|
|
||||||
}
|
|
||||||
|
|
||||||
a:hover {
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="main">
|
<table
|
||||||
<p>{{ $content }}</p>
|
cellspacing="0"
|
||||||
<p>From: {{ $name }} - {{ $email }}</p>
|
cellpadding="0"
|
||||||
</div>
|
border="0"
|
||||||
<div class="footer">Sent by STEMMechanics · <a href="https://www.stemmechanics.com.au/">Visit our Website</a> · <a href="https://twitter.com/stemmechanics">@stemmechanics</a><br>PO Box 36, Edmonton, QLD 4869, Australia</div>
|
role="presentation"
|
||||||
|
style="
|
||||||
|
width: 100%;
|
||||||
|
padding: 2rem;
|
||||||
|
font-size: 1.1rem;
|
||||||
|
color: #000000;
|
||||||
|
font-family: Nunito, Arial, Helvetica, sans-serif;
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
-moz-osx-font-smoothing: grayscale;
|
||||||
|
"
|
||||||
|
>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<a href="https://www.stemmechanics.com.au/">
|
||||||
|
<img
|
||||||
|
alt="STEMMechanics Logo"
|
||||||
|
src="{{ $message->embed(public_path('img').'/logo.png') }}"
|
||||||
|
width="400"
|
||||||
|
height="62"
|
||||||
|
/>
|
||||||
|
</a>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><h2>Hi STEMMechanics,</h2></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td style="padding-bottom: 2rem">
|
||||||
|
{{ $content }}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td style="padding-bottom: 2rem">
|
||||||
|
<strong>From:</strong>{{ $name }} - {{ $email }}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td
|
||||||
|
align="center"
|
||||||
|
style="
|
||||||
|
font-size: 90%;
|
||||||
|
text-align: center;
|
||||||
|
padding-top: 2rem;
|
||||||
|
padding-bottom: 2rem;
|
||||||
|
border-top: 1px solid #ddd;
|
||||||
|
"
|
||||||
|
>
|
||||||
|
Need help or got feedback?
|
||||||
|
<a href="https://www.stemmechanics.com.au/contact"
|
||||||
|
>Contact us</a
|
||||||
|
>
|
||||||
|
or touch base at
|
||||||
|
<a href="https://twitter.com/stemmechanics"
|
||||||
|
>@stemmechanics</a
|
||||||
|
>.
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td
|
||||||
|
align="center"
|
||||||
|
style="
|
||||||
|
font-size: 80%;
|
||||||
|
text-align: center;
|
||||||
|
padding-top: 1rem;
|
||||||
|
padding-bottom: 2rem;
|
||||||
|
"
|
||||||
|
>
|
||||||
|
Sent by STEMMechanics ·
|
||||||
|
<a href="https://www.stemmechanics.com.au/"
|
||||||
|
>Visit our Website</a
|
||||||
|
>
|
||||||
|
·
|
||||||
|
<a href="https://twitter.com/stemmechanics"
|
||||||
|
>@stemmechanics</a
|
||||||
|
><br />PO Box 36, Edmonton, QLD 4869, Australia
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@@ -1,104 +1,135 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}" xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office">
|
<html
|
||||||
|
lang="{{ str_replace('_', '-', app()->getLocale()) }}"
|
||||||
|
xmlns="http://www.w3.org/1999/xhtml"
|
||||||
|
xmlns:v="urn:schemas-microsoft-com:vml"
|
||||||
|
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||||
|
>
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||||
<title>STEMMechanics - Verify Email Address</title>
|
<title>STEMMechanics - Forgot Password</title>
|
||||||
|
<link
|
||||||
|
rel="noopener"
|
||||||
|
target="_blank"
|
||||||
|
href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;800&display=swap"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<!--[if gte mso 9]>
|
||||||
|
<xml>
|
||||||
|
<o:OfficeDocumentSettings>
|
||||||
|
<o:AllowPNG />
|
||||||
|
<o:PixelsPerInch>96</o:PixelsPerInch>
|
||||||
|
</o:OfficeDocumentSettings>
|
||||||
|
</xml>
|
||||||
|
<![endif]-->
|
||||||
<style>
|
<style>
|
||||||
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;800&display=swap');
|
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;800&display=swap");
|
||||||
* {
|
|
||||||
box-sizing: border-box;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
font-size: 1.1rem;
|
|
||||||
font-family: Nunito, Arial, Helvetica, sans-serif !important;
|
|
||||||
color: #000000;
|
|
||||||
padding: 2rem;
|
|
||||||
-webkit-font-smoothing: antialiased;
|
|
||||||
-moz-osx-font-smoothing: grayscale
|
|
||||||
}
|
|
||||||
|
|
||||||
div.main {
|
|
||||||
margin: 0 auto;
|
|
||||||
background-color: #ffffff;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.footer {
|
|
||||||
margin: 2rem auto;
|
|
||||||
max-width: 48rem;
|
|
||||||
font-size: 70%;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
a.brand {
|
|
||||||
display: block;
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
padding: 0 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
a.brand:hover {
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
h2 {
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
p {
|
|
||||||
margin-bottom: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
a.brand img {
|
|
||||||
width: 100%;
|
|
||||||
max-width: 100%;
|
|
||||||
object-fit: contain;
|
|
||||||
}
|
|
||||||
|
|
||||||
.code {
|
|
||||||
display: block;
|
|
||||||
font-size: 200%;
|
|
||||||
text-align: center;
|
|
||||||
margin-top: 2rem;
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
letter-spacing: 0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.feedback {
|
|
||||||
font-size: 90%;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.border {
|
|
||||||
border-top: 1px solid #ddd;
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
a, a:visited, a:hover {
|
|
||||||
color: #2563EB;
|
|
||||||
}
|
|
||||||
|
|
||||||
a:hover {
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="main">
|
<table
|
||||||
<a href="https://www.stemmechanics.com.au/" class="brand">
|
cellspacing="0"
|
||||||
<img alt="STEMMechanics Logo" src="{{ $message->embed(public_path('img').'/logo.png') }}">
|
cellpadding="0"
|
||||||
</a>
|
border="0"
|
||||||
<h2>Welcome {{ $user?->username }},</h2>
|
role="presentation"
|
||||||
<p>We've heard you would like to try out our workshops and courses!</p>
|
style="
|
||||||
<p>Before we can let you loose on our website, we need to make sure you are a real person and not a pesky robot or cat. Click this link <a href="https://www.stemmechanics.com.au/verify-email?code={{ $code }}">stemmechanics.com.au/verify-email</a> and if you are asked, use the confirm code:</p>
|
width: 100%;
|
||||||
<strong class="code">{{ $code }}</strong>
|
padding: 2rem;
|
||||||
<div class="border"></div>
|
font-size: 1.1rem;
|
||||||
<p class="feedback">Need help or got feedback? <a href="https://www.stemmechanics.com.au/contact">Contact us</a> or touch base at <a href="https://twitter.com/stemmechanics">@stemmechanics</a>.</p>
|
color: #000000;
|
||||||
</div>
|
font-family: Nunito, Arial, Helvetica, sans-serif;
|
||||||
<div class="footer">Sent by STEMMechanics · <a href="https://www.stemmechanics.com.au/">Visit our Website</a> · <a href="https://twitter.com/stemmechanics">@stemmechanics</a><br>PO Box 36, Edmonton, QLD 4869, Australia</div>
|
-webkit-font-smoothing: antialiased;
|
||||||
|
-moz-osx-font-smoothing: grayscale;
|
||||||
|
"
|
||||||
|
>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<a href="https://www.stemmechanics.com.au/">
|
||||||
|
<img
|
||||||
|
alt="STEMMechanics Logo"
|
||||||
|
src="{{ $message->embed(public_path('img').'/logo.png') }}"
|
||||||
|
width="400"
|
||||||
|
height="62"
|
||||||
|
/>
|
||||||
|
</a>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><h2>Welcome {{ $user?->username }},</h2></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
We've heard you would like to try out our workshops and courses!
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
Before we can let you loose on our website, we need to make sure you are a real person and not a pesky robot or cat. Click this link <a href="https://www.stemmechanics.com.au/verify-email?code={{ $code }}">stemmechanics.com.au/verify-email</a> and if you are asked, use the confirm code:
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td
|
||||||
|
align="center"
|
||||||
|
style="
|
||||||
|
font-size: 200%;
|
||||||
|
text-align: center;
|
||||||
|
padding-top: 2rem;
|
||||||
|
padding-bottom: 2rem;
|
||||||
|
letter-spacing: 0.5rem;
|
||||||
|
"
|
||||||
|
>
|
||||||
|
<strong>{{ $code }}</strong>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td style="padding-bottom: 2rem">
|
||||||
|
But if you didn't ask to reset your password, you can delete
|
||||||
|
this email and your password will remain the same.
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td
|
||||||
|
align="center"
|
||||||
|
style="
|
||||||
|
font-size: 90%;
|
||||||
|
text-align: center;
|
||||||
|
padding-top: 2rem;
|
||||||
|
padding-bottom: 2rem;
|
||||||
|
border-top: 1px solid #ddd;
|
||||||
|
"
|
||||||
|
>
|
||||||
|
Need help or got feedback?
|
||||||
|
<a href="https://www.stemmechanics.com.au/contact"
|
||||||
|
>Contact us</a
|
||||||
|
>
|
||||||
|
or touch base at
|
||||||
|
<a href="https://twitter.com/stemmechanics"
|
||||||
|
>@stemmechanics</a
|
||||||
|
>.
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td
|
||||||
|
align="center"
|
||||||
|
style="
|
||||||
|
font-size: 80%;
|
||||||
|
text-align: center;
|
||||||
|
padding-top: 1rem;
|
||||||
|
padding-bottom: 2rem;
|
||||||
|
"
|
||||||
|
>
|
||||||
|
Sent by STEMMechanics ·
|
||||||
|
<a href="https://www.stemmechanics.com.au/"
|
||||||
|
>Visit our Website</a
|
||||||
|
>
|
||||||
|
·
|
||||||
|
<a href="https://twitter.com/stemmechanics"
|
||||||
|
>@stemmechanics</a
|
||||||
|
><br />PO Box 36, Edmonton, QLD 4869, Australia
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@@ -1,117 +1,136 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}" xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office">
|
<html
|
||||||
|
lang="{{ str_replace('_', '-', app()->getLocale()) }}"
|
||||||
|
xmlns="http://www.w3.org/1999/xhtml"
|
||||||
|
xmlns:v="urn:schemas-microsoft-com:vml"
|
||||||
|
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||||
|
>
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||||
<title>STEMMechanics - Forgot Password</title>
|
<title>STEMMechanics - Forgot Password</title>
|
||||||
|
<link
|
||||||
|
rel="noopener"
|
||||||
|
target="_blank"
|
||||||
|
href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;800&display=swap"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<!--[if gte mso 9]>
|
||||||
|
<xml>
|
||||||
|
<o:OfficeDocumentSettings>
|
||||||
|
<o:AllowPNG />
|
||||||
|
<o:PixelsPerInch>96</o:PixelsPerInch>
|
||||||
|
</o:OfficeDocumentSettings>
|
||||||
|
</xml>
|
||||||
|
<![endif]-->
|
||||||
<style>
|
<style>
|
||||||
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;800&display=swap');
|
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;800&display=swap");
|
||||||
* {
|
|
||||||
box-sizing: border-box;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
font-size: 1.1rem;
|
|
||||||
font-family: Nunito, Arial, Helvetica, sans-serif !important;
|
|
||||||
color: #000000;
|
|
||||||
padding: 2rem;
|
|
||||||
-webkit-font-smoothing: antialiased;
|
|
||||||
-moz-osx-font-smoothing: grayscale
|
|
||||||
}
|
|
||||||
|
|
||||||
div.main {
|
|
||||||
margin: 0 auto;
|
|
||||||
background-color: #ffffff;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.footer {
|
|
||||||
margin: 2rem auto;
|
|
||||||
max-width: 48rem;
|
|
||||||
font-size: 70%;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
a.brand {
|
|
||||||
display: block;
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
padding: 0 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
a.brand:hover {
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
h2 {
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
p {
|
|
||||||
margin-bottom: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
a.brand img {
|
|
||||||
width: 100%;
|
|
||||||
max-width: 100%;
|
|
||||||
object-fit: contain;
|
|
||||||
}
|
|
||||||
|
|
||||||
.code {
|
|
||||||
display: block;
|
|
||||||
font-size: 200%;
|
|
||||||
text-align: center;
|
|
||||||
margin-top: 2rem;
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
letter-spacing: 0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.feedback {
|
|
||||||
font-size: 90%;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.border {
|
|
||||||
border-top: 1px solid #ddd;
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
a, a:visited, a:hover {
|
|
||||||
color: #2563EB;
|
|
||||||
}
|
|
||||||
|
|
||||||
a:hover {
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.list {
|
|
||||||
padding-left: 2rem;
|
|
||||||
padding-right: 2rem;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.list ul {
|
|
||||||
list-style-position: inside;
|
|
||||||
display: inline-block;
|
|
||||||
text-align: left;
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="main">
|
<table
|
||||||
<a href="https://www.stemmechanics.com.au/" class="brand">
|
cellspacing="0"
|
||||||
<img alt="STEMMechanics Logo" src="{{ $message->embed(public_path('img').'/logo.png') }}">
|
cellpadding="0"
|
||||||
</a>
|
border="0"
|
||||||
<h2>Yo {{ $user?->username }}</h2>
|
role="presentation"
|
||||||
<p>We all forget things sometimes! But you can reset your password by clicking the link <a href="https://www.stemmechanics.com.au/reset-password?code={{ $code }}">Reset Password</a> and entering the following code:</p>
|
style="
|
||||||
<strong class="code">{{ $code }}</strong>
|
width: 100%;
|
||||||
<p>But if you didn't ask to reset your password, you can delete this email and your password will remain the same.</p>
|
padding: 2rem;
|
||||||
<div class="border"></div>
|
font-size: 1.1rem;
|
||||||
<p class="feedback">Need help or got feedback? <a href="https://www.stemmechanics.com.au/contact">Contact us</a> or touch base at <a href="https://twitter.com/stemmechanics">@stemmechanics</a>.</p>
|
color: #000000;
|
||||||
</div>
|
font-family: Nunito, Arial, Helvetica, sans-serif;
|
||||||
<div class="footer">Sent by STEMMechanics · <a href="https://www.stemmechanics.com.au/">Visit our Website</a> · <a href="https://twitter.com/stemmechanics">@stemmechanics</a><br>PO Box 36, Edmonton, QLD 4869, Australia</div>
|
-webkit-font-smoothing: antialiased;
|
||||||
|
-moz-osx-font-smoothing: grayscale;
|
||||||
|
"
|
||||||
|
>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<a href="https://www.stemmechanics.com.au/">
|
||||||
|
<img
|
||||||
|
alt="STEMMechanics Logo"
|
||||||
|
src="{{ $message->embed(public_path('img').'/logo.png') }}"
|
||||||
|
width="400"
|
||||||
|
height="62"
|
||||||
|
/>
|
||||||
|
</a>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><h2>Yo {{ $user?->username }}</h2></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
We all forget things sometimes! But you can reset your
|
||||||
|
password by clicking the link
|
||||||
|
<a
|
||||||
|
href="https://www.stemmechanics.com.au/reset-password?code={{ $code }}"
|
||||||
|
>Reset Password</a
|
||||||
|
>
|
||||||
|
and entering the following code:
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td
|
||||||
|
align="center"
|
||||||
|
style="
|
||||||
|
font-size: 200%;
|
||||||
|
text-align: center;
|
||||||
|
padding-top: 2rem;
|
||||||
|
padding-bottom: 2rem;
|
||||||
|
letter-spacing: 0.5rem;
|
||||||
|
"
|
||||||
|
>
|
||||||
|
<strong>{{ $code }}</strong>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td style="padding-bottom: 2rem">
|
||||||
|
But if you didn't ask to reset your password, you can delete
|
||||||
|
this email and your password will remain the same.
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td
|
||||||
|
align="center"
|
||||||
|
style="
|
||||||
|
font-size: 90%;
|
||||||
|
text-align: center;
|
||||||
|
padding-top: 2rem;
|
||||||
|
padding-bottom: 2rem;
|
||||||
|
border-top: 1px solid #ddd;
|
||||||
|
"
|
||||||
|
>
|
||||||
|
Need help or got feedback?
|
||||||
|
<a href="https://www.stemmechanics.com.au/contact"
|
||||||
|
>Contact us</a
|
||||||
|
>
|
||||||
|
or touch base at
|
||||||
|
<a href="https://twitter.com/stemmechanics"
|
||||||
|
>@stemmechanics</a
|
||||||
|
>.
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td
|
||||||
|
align="center"
|
||||||
|
style="
|
||||||
|
font-size: 80%;
|
||||||
|
text-align: center;
|
||||||
|
padding-top: 1rem;
|
||||||
|
padding-bottom: 2rem;
|
||||||
|
"
|
||||||
|
>
|
||||||
|
Sent by STEMMechanics ·
|
||||||
|
<a href="https://www.stemmechanics.com.au/"
|
||||||
|
>Visit our Website</a
|
||||||
|
>
|
||||||
|
·
|
||||||
|
<a href="https://twitter.com/stemmechanics"
|
||||||
|
>@stemmechanics</a
|
||||||
|
><br />PO Box 36, Edmonton, QLD 4869, Australia
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@@ -1,132 +1,131 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}" xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office">
|
<html
|
||||||
|
lang="{{ str_replace('_', '-', app()->getLocale()) }}"
|
||||||
|
xmlns="http://www.w3.org/1999/xhtml"
|
||||||
|
xmlns:v="urn:schemas-microsoft-com:vml"
|
||||||
|
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||||
|
>
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||||
<title>STEMMechanics - Forgot Username</title>
|
<title>STEMMechanics - Forgot Password</title>
|
||||||
|
<link
|
||||||
|
rel="noopener"
|
||||||
|
target="_blank"
|
||||||
|
href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;800&display=swap"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<!--[if gte mso 9]>
|
||||||
|
<xml>
|
||||||
|
<o:OfficeDocumentSettings>
|
||||||
|
<o:AllowPNG />
|
||||||
|
<o:PixelsPerInch>96</o:PixelsPerInch>
|
||||||
|
</o:OfficeDocumentSettings>
|
||||||
|
</xml>
|
||||||
|
<![endif]-->
|
||||||
<style>
|
<style>
|
||||||
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;800&display=swap');
|
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;800&display=swap");
|
||||||
* {
|
|
||||||
box-sizing: border-box;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
font-size: 1.1rem;
|
|
||||||
font-family: Nunito, Arial, Helvetica, sans-serif !important;
|
|
||||||
color: #000000;
|
|
||||||
padding: 2rem;
|
|
||||||
-webkit-font-smoothing: antialiased;
|
|
||||||
-moz-osx-font-smoothing: grayscale
|
|
||||||
}
|
|
||||||
|
|
||||||
div.main {
|
|
||||||
margin: 0 auto;
|
|
||||||
background-color: #ffffff;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.footer {
|
|
||||||
margin: 2rem auto;
|
|
||||||
max-width: 48rem;
|
|
||||||
font-size: 70%;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
a.brand {
|
|
||||||
display: block;
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
padding: 0 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
a.brand:hover {
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
h2 {
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
p {
|
|
||||||
margin-bottom: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
a.brand img {
|
|
||||||
width: 100%;
|
|
||||||
max-width: 100%;
|
|
||||||
object-fit: contain;
|
|
||||||
}
|
|
||||||
|
|
||||||
.code {
|
|
||||||
display: block;
|
|
||||||
font-size: 200%;
|
|
||||||
text-align: center;
|
|
||||||
margin-top: 2rem;
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
letter-spacing: 0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.feedback {
|
|
||||||
font-size: 90%;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.border {
|
|
||||||
border-top: 1px solid #ddd;
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
a, a:visited, a:hover {
|
|
||||||
color: #2563EB;
|
|
||||||
}
|
|
||||||
|
|
||||||
a:hover {
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.list {
|
|
||||||
padding-left: 2rem;
|
|
||||||
padding-right: 2rem;
|
|
||||||
/* text-align: center; */
|
|
||||||
}
|
|
||||||
|
|
||||||
div.list ul {
|
|
||||||
list-style-position: inside;
|
|
||||||
display: inline-block;
|
|
||||||
text-align: left;
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="main">
|
<table
|
||||||
<a href="https://www.stemmechanics.com.au/" class="brand">
|
cellspacing="0"
|
||||||
<img alt="STEMMechanics Logo" src="{{ $message->embed(public_path('img').'/logo.png') }}">
|
cellpadding="0"
|
||||||
</a>
|
border="0"
|
||||||
@if (count($usernames) > 2)
|
role="presentation"
|
||||||
<h2>Yo {{ $usernames[0] }}, {{ $usernames[1] }}, or is it {{ $usernames[count($usernames)-1] }}?</h2>
|
style="
|
||||||
@elseif (count($usernames) > 1)
|
width: 100%;
|
||||||
<h2>Yo {{ $usernames[0] }} or is it {{ $usernames[1] }}?</h2>
|
padding: 2rem;
|
||||||
@else
|
font-size: 1.1rem;
|
||||||
<h2>Yo {{ $usernames[0] }},</h2>
|
color: #000000;
|
||||||
@endif
|
font-family: Nunito, Arial, Helvetica, sans-serif;
|
||||||
@if (count($usernames) == 1)
|
-webkit-font-smoothing: antialiased;
|
||||||
<p>Guess what, your username is {{ $usernames[0] }}.</p>
|
-moz-osx-font-smoothing: grayscale;
|
||||||
@else
|
"
|
||||||
<p>We have the following usernames registered to this email address:</p>
|
>
|
||||||
<div class="list">
|
<tr>
|
||||||
<ul>
|
<td>
|
||||||
@foreach($usernames as $username)
|
<a href="https://www.stemmechanics.com.au/">
|
||||||
<li>{{ $username }}</li>
|
<img
|
||||||
@endforeach
|
alt="STEMMechanics Logo"
|
||||||
</ul>
|
src="{{ $message->embed(public_path('img').'/logo.png') }}"
|
||||||
</div>
|
width="400"
|
||||||
@endif
|
height="62"
|
||||||
<div class="border"></div>
|
/>
|
||||||
<p class="feedback">Need help or got feedback? <a href="https://www.stemmechanics.com.au/contact">Contact us</a> or touch base at <a href="https://twitter.com/stemmechanics">@stemmechanics</a>.</p>
|
</a>
|
||||||
</div>
|
</td>
|
||||||
<div class="footer">Sent by STEMMechanics · <a href="https://www.stemmechanics.com.au/">Visit our Website</a> · <a href="https://twitter.com/stemmechanics">@stemmechanics</a><br>PO Box 36, Edmonton, QLD 4869, Australia</div>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
@if (count($usernames) > 2)
|
||||||
|
<h2>Yo {{ $usernames[0] }}, {{ $usernames[1] }}, or is it {{ $usernames[count($usernames)-1] }}?</h2>
|
||||||
|
@elseif (count($usernames) > 1)
|
||||||
|
<h2>Yo {{ $usernames[0] }}, or is it {{ $usernames[1] }}?</h2>
|
||||||
|
@else
|
||||||
|
<h2>Yo {{ $usernames[0] }},</h2>
|
||||||
|
@endif
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
@if (count($usernames) == 1)
|
||||||
|
Guess what, your username is <strong>{{ $usernames[0] }}</strong>.
|
||||||
|
@else
|
||||||
|
We have the following usernames registered to this email address:
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<ul style="padding-top: 2rem; padding-bottom: 2rem;">
|
||||||
|
@foreach($usernames as $username)
|
||||||
|
<li>{{ $username }}</li>
|
||||||
|
@endforeach
|
||||||
|
</ul>
|
||||||
|
@endif
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td
|
||||||
|
align="center"
|
||||||
|
style="
|
||||||
|
font-size: 90%;
|
||||||
|
text-align: center;
|
||||||
|
padding-top: 2rem;
|
||||||
|
padding-bottom: 2rem;
|
||||||
|
border-top: 1px solid #ddd;
|
||||||
|
"
|
||||||
|
>
|
||||||
|
Need help or got feedback?
|
||||||
|
<a href="https://www.stemmechanics.com.au/contact"
|
||||||
|
>Contact us</a
|
||||||
|
>
|
||||||
|
or touch base at
|
||||||
|
<a href="https://twitter.com/stemmechanics"
|
||||||
|
>@stemmechanics</a
|
||||||
|
>.
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td
|
||||||
|
align="center"
|
||||||
|
style="
|
||||||
|
font-size: 80%;
|
||||||
|
text-align: center;
|
||||||
|
padding-top: 1rem;
|
||||||
|
padding-bottom: 2rem;
|
||||||
|
"
|
||||||
|
>
|
||||||
|
Sent by STEMMechanics ·
|
||||||
|
<a href="https://www.stemmechanics.com.au/"
|
||||||
|
>Visit our Website</a
|
||||||
|
>
|
||||||
|
·
|
||||||
|
<a href="https://twitter.com/stemmechanics"
|
||||||
|
>@stemmechanics</a
|
||||||
|
><br />PO Box 36, Edmonton, QLD 4869, Australia
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@@ -1,103 +1,116 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}" xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office">
|
<html
|
||||||
|
lang="{{ str_replace('_', '-', app()->getLocale()) }}"
|
||||||
|
xmlns="http://www.w3.org/1999/xhtml"
|
||||||
|
xmlns:v="urn:schemas-microsoft-com:vml"
|
||||||
|
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||||
|
>
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||||
<title>STEMMechanics - Subscription</title>
|
<title>STEMMechanics - Forgot Password</title>
|
||||||
|
<link
|
||||||
|
rel="noopener"
|
||||||
|
target="_blank"
|
||||||
|
href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;800&display=swap"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<!--[if gte mso 9]>
|
||||||
|
<xml>
|
||||||
|
<o:OfficeDocumentSettings>
|
||||||
|
<o:AllowPNG />
|
||||||
|
<o:PixelsPerInch>96</o:PixelsPerInch>
|
||||||
|
</o:OfficeDocumentSettings>
|
||||||
|
</xml>
|
||||||
|
<![endif]-->
|
||||||
<style>
|
<style>
|
||||||
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;800&display=swap');
|
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;800&display=swap");
|
||||||
* {
|
|
||||||
box-sizing: border-box;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
font-size: 1.1rem;
|
|
||||||
font-family: Nunito, Arial, Helvetica, sans-serif !important;
|
|
||||||
color: #000000;
|
|
||||||
padding: 2rem;
|
|
||||||
-webkit-font-smoothing: antialiased;
|
|
||||||
-moz-osx-font-smoothing: grayscale
|
|
||||||
}
|
|
||||||
|
|
||||||
div.main {
|
|
||||||
margin: 0 auto;
|
|
||||||
background-color: #ffffff;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.footer {
|
|
||||||
margin: 2rem auto;
|
|
||||||
max-width: 48rem;
|
|
||||||
font-size: 70%;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
a.brand {
|
|
||||||
display: block;
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
padding: 0 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
a.brand:hover {
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
h2 {
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
p {
|
|
||||||
margin-bottom: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
a.brand img {
|
|
||||||
width: 100%;
|
|
||||||
max-width: 100%;
|
|
||||||
object-fit: contain;
|
|
||||||
}
|
|
||||||
|
|
||||||
.code {
|
|
||||||
display: block;
|
|
||||||
font-size: 200%;
|
|
||||||
text-align: center;
|
|
||||||
margin-top: 2rem;
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
letter-spacing: 0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.feedback {
|
|
||||||
font-size: 90%;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.border {
|
|
||||||
border-top: 1px solid #ddd;
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
a, a:visited, a:hover {
|
|
||||||
color: #2563EB;
|
|
||||||
}
|
|
||||||
|
|
||||||
a:hover {
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="main">
|
<table
|
||||||
<a href="https://www.stemmechanics.com.au/" class="brand">
|
cellspacing="0"
|
||||||
<img alt="STEMMechanics Logo" src="{{ $message->embed(public_path('img').'/logo.png') }}">
|
cellpadding="0"
|
||||||
</a>
|
border="0"
|
||||||
<h2>Howdy there,</h2>
|
role="presentation"
|
||||||
<p>At your request, you are now subscribed to our newsletter giving you tips, tricks and letting you know when new workshops are scheduled.</p>
|
style="
|
||||||
<p>If this wasn't you, you can unsubscribe by visiting <a href="https://www.stemmechanics.com.au/unsubscribe?email={{ $email }}">stemmechanics.com.au/unsubscribe</a></p>
|
width: 100%;
|
||||||
<div class="border"></div>
|
padding: 2rem;
|
||||||
<p class="feedback">Need help or got feedback? <a href="https://www.stemmechanics.com.au/contact">Contact us</a> or touch base at <a href="https://twitter.com/stemmechanics">@stemmechanics</a>.</p>
|
font-size: 1.1rem;
|
||||||
</div>
|
color: #000000;
|
||||||
<div class="footer">Sent by STEMMechanics · <a href="https://www.stemmechanics.com.au/">Visit our Website</a> · <a href="https://twitter.com/stemmechanics">@stemmechanics</a><br>PO Box 36, Edmonton, QLD 4869, Australia</div>
|
font-family: Nunito, Arial, Helvetica, sans-serif;
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
-moz-osx-font-smoothing: grayscale;
|
||||||
|
"
|
||||||
|
>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<a href="https://www.stemmechanics.com.au/">
|
||||||
|
<img
|
||||||
|
alt="STEMMechanics Logo"
|
||||||
|
src="{{ $message->embed(public_path('img').'/logo.png') }}"
|
||||||
|
width="400"
|
||||||
|
height="62"
|
||||||
|
/>
|
||||||
|
</a>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<p></p>
|
||||||
|
<td><h2>Howdy there,</h2></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td style="padding-bottom: 2rem">
|
||||||
|
At your request, you are now subscribed to our newsletter giving you tips, tricks and letting you know when new workshops are scheduled.
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td style="padding-bottom: 2rem">
|
||||||
|
If this wasn't you, you can unsubscribe by visiting <a href="https://www.stemmechanics.com.au/unsubscribe?email={{ $email }}">stemmechanics.com.au/unsubscribe</a>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td
|
||||||
|
align="center"
|
||||||
|
style="
|
||||||
|
font-size: 90%;
|
||||||
|
text-align: center;
|
||||||
|
padding-top: 2rem;
|
||||||
|
padding-bottom: 2rem;
|
||||||
|
border-top: 1px solid #ddd;
|
||||||
|
"
|
||||||
|
>
|
||||||
|
Need help or got feedback?
|
||||||
|
<a href="https://www.stemmechanics.com.au/contact"
|
||||||
|
>Contact us</a
|
||||||
|
>
|
||||||
|
or touch base at
|
||||||
|
<a href="https://twitter.com/stemmechanics"
|
||||||
|
>@stemmechanics</a
|
||||||
|
>.
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td
|
||||||
|
align="center"
|
||||||
|
style="
|
||||||
|
font-size: 80%;
|
||||||
|
text-align: center;
|
||||||
|
padding-top: 1rem;
|
||||||
|
padding-bottom: 2rem;
|
||||||
|
"
|
||||||
|
>
|
||||||
|
Sent by STEMMechanics ·
|
||||||
|
<a href="https://www.stemmechanics.com.au/"
|
||||||
|
>Visit our Website</a
|
||||||
|
>
|
||||||
|
·
|
||||||
|
<a href="https://twitter.com/stemmechanics"
|
||||||
|
>@stemmechanics</a
|
||||||
|
><br />PO Box 36, Edmonton, QLD 4869, Australia
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@@ -1,102 +1,111 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}" xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office">
|
<html
|
||||||
|
lang="{{ str_replace('_', '-', app()->getLocale()) }}"
|
||||||
|
xmlns="http://www.w3.org/1999/xhtml"
|
||||||
|
xmlns:v="urn:schemas-microsoft-com:vml"
|
||||||
|
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||||
|
>
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||||
<title>STEMMechanics - Subscription</title>
|
<title>STEMMechanics - Forgot Password</title>
|
||||||
|
<link
|
||||||
|
rel="noopener"
|
||||||
|
target="_blank"
|
||||||
|
href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;800&display=swap"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<!--[if gte mso 9]>
|
||||||
|
<xml>
|
||||||
|
<o:OfficeDocumentSettings>
|
||||||
|
<o:AllowPNG />
|
||||||
|
<o:PixelsPerInch>96</o:PixelsPerInch>
|
||||||
|
</o:OfficeDocumentSettings>
|
||||||
|
</xml>
|
||||||
|
<![endif]-->
|
||||||
<style>
|
<style>
|
||||||
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;800&display=swap');
|
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;800&display=swap");
|
||||||
* {
|
|
||||||
box-sizing: border-box;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
font-size: 1.1rem;
|
|
||||||
font-family: Nunito, Arial, Helvetica, sans-serif !important;
|
|
||||||
color: #000000;
|
|
||||||
padding: 2rem;
|
|
||||||
-webkit-font-smoothing: antialiased;
|
|
||||||
-moz-osx-font-smoothing: grayscale
|
|
||||||
}
|
|
||||||
|
|
||||||
div.main {
|
|
||||||
margin: 0 auto;
|
|
||||||
background-color: #ffffff;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.footer {
|
|
||||||
margin: 2rem auto;
|
|
||||||
max-width: 48rem;
|
|
||||||
font-size: 70%;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
a.brand {
|
|
||||||
display: block;
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
padding: 0 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
a.brand:hover {
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
h2 {
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
p {
|
|
||||||
margin-bottom: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
a.brand img {
|
|
||||||
width: 100%;
|
|
||||||
max-width: 100%;
|
|
||||||
object-fit: contain;
|
|
||||||
}
|
|
||||||
|
|
||||||
.code {
|
|
||||||
display: block;
|
|
||||||
font-size: 200%;
|
|
||||||
text-align: center;
|
|
||||||
margin-top: 2rem;
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
letter-spacing: 0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.feedback {
|
|
||||||
font-size: 90%;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.border {
|
|
||||||
border-top: 1px solid #ddd;
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
a, a:visited, a:hover {
|
|
||||||
color: #2563EB;
|
|
||||||
}
|
|
||||||
|
|
||||||
a:hover {
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="main">
|
<table
|
||||||
<a href="https://www.stemmechanics.com.au/" class="brand">
|
cellspacing="0"
|
||||||
<img alt="STEMMechanics Logo" src="{{ $message->embed(public_path('img').'/logo.png') }}">
|
cellpadding="0"
|
||||||
</a>
|
border="0"
|
||||||
<h2>Howdy there,</h2>
|
role="presentation"
|
||||||
<p>At your request, you are now unsubscribed from our newsletter.</p>
|
style="
|
||||||
<div class="border"></div>
|
width: 100%;
|
||||||
<p class="feedback">Need help or got feedback? <a href="https://www.stemmechanics.com.au/contact">Contact us</a> or touch base at <a href="https://twitter.com/stemmechanics">@stemmechanics</a>.</p>
|
padding: 2rem;
|
||||||
</div>
|
font-size: 1.1rem;
|
||||||
<div class="footer">Sent by STEMMechanics · <a href="https://www.stemmechanics.com.au/">Visit our Website</a> · <a href="https://twitter.com/stemmechanics">@stemmechanics</a><br>PO Box 36, Edmonton, QLD 4869, Australia</div>
|
color: #000000;
|
||||||
|
font-family: Nunito, Arial, Helvetica, sans-serif;
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
-moz-osx-font-smoothing: grayscale;
|
||||||
|
"
|
||||||
|
>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<a href="https://www.stemmechanics.com.au/">
|
||||||
|
<img
|
||||||
|
alt="STEMMechanics Logo"
|
||||||
|
src="{{ $message->embed(public_path('img').'/logo.png') }}"
|
||||||
|
width="400"
|
||||||
|
height="62"
|
||||||
|
/>
|
||||||
|
</a>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<p></p>
|
||||||
|
<td><h2>Howdy there,</h2></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td style="padding-bottom: 2rem">
|
||||||
|
At your request, you are now unsubscribed from our newsletter.
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td
|
||||||
|
align="center"
|
||||||
|
style="
|
||||||
|
font-size: 90%;
|
||||||
|
text-align: center;
|
||||||
|
padding-top: 2rem;
|
||||||
|
padding-bottom: 2rem;
|
||||||
|
border-top: 1px solid #ddd;
|
||||||
|
"
|
||||||
|
>
|
||||||
|
Need help or got feedback?
|
||||||
|
<a href="https://www.stemmechanics.com.au/contact"
|
||||||
|
>Contact us</a
|
||||||
|
>
|
||||||
|
or touch base at
|
||||||
|
<a href="https://twitter.com/stemmechanics"
|
||||||
|
>@stemmechanics</a
|
||||||
|
>.
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td
|
||||||
|
align="center"
|
||||||
|
style="
|
||||||
|
font-size: 80%;
|
||||||
|
text-align: center;
|
||||||
|
padding-top: 1rem;
|
||||||
|
padding-bottom: 2rem;
|
||||||
|
"
|
||||||
|
>
|
||||||
|
Sent by STEMMechanics ·
|
||||||
|
<a href="https://www.stemmechanics.com.au/"
|
||||||
|
>Visit our Website</a
|
||||||
|
>
|
||||||
|
·
|
||||||
|
<a href="https://twitter.com/stemmechanics"
|
||||||
|
>@stemmechanics</a
|
||||||
|
><br />PO Box 36, Edmonton, QLD 4869, Australia
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
Reference in New Issue
Block a user