seepur/resources/views/emails/reset-password.edge
Sagi Dayan accbc5c35c First implementation of email service
- Sending welcome email uppon register
 - Test email configuration API for admins
 - basic reset password - not implemented
2020-05-12 21:30:11 -04:00

31 lines
926 B
Plaintext

@layout('emails.layouts.base')
@section('content')
Hi {{user.name}},
<p>
Click the following button to reset your password. If you have not requested the password reset, then ignore this email.
</p>
<div style="width: 100%; display:flex;justify-content: center;">
<a style="margin-right:auto; margin-left:auto;background-color: white;
border:solid 1px #dbdbdb;
color: #363636;
cursor: pointer;
justify-content: center;
padding-bottom: calc(0.5em - 1px);
padding-left: 1em;
padding-right: 1em;
padding-top: calc(0.5em - 1px);
text-align: center;
white-space: nowrap;
border-radius: 290486px;
padding-left: calc(1em + 0.25em);
padding-right: calc(1em + 0.25em);
display: inline-block;
text-decoration: none;
" href="{{link.href}}" target="_blank">{{link.text}}</a>
</div>
<p>
Do note that this link will expire within 24 hours.
</p>
@endsection