View file themes/default/apps/emails/reset_password.phtml

File size: 2.12Kb
<div style="font-family: Arial, Helvetica, sans-serif; line-height: 1.4; background: #f6f6f7; padding: 30px;">
	<div style="display: flex; flex-direction: row; justify-content: center; margin-bottom: 20px;">
		<div style="height: 50px;">
			<a href="<?php echo cl_link('/'); ?>">
				<img style="height: 100%;" src="{%config site_logo%}" alt="{%config name%}">
			</a>
		</div>
	</div>
	<div style="display: flex; justify-content: center;  margin-bottom: 20px;">
		<div style="background: #fff; border-radius: 2px; padding: 30px; color: #14171a; min-width: 400px;">
			<h1 style="font-size: 32px; font-weight: 700; padding: 0; margin: 0 0 35px 0; text-transform: uppercase;">
				<?php echo cl_translate("Password reset"); ?>
			</h1>
			<h4 style="font-size: 22px; color: #1ca1f3; padding: 0; margin: 0 0 5px 0;">
				<?php echo cl_translate("Hello"); ?>, <?php echo($cl["me"]["name"]); ?>!
			</h4> 
			<p style="color: #42688a; padding: 0; margin: 0 0 20px 0; font-size: 16px;">
				<?php echo cl_translate("Tap the botton below to reset your account password. If you did not request a new password, you can safely delete this email."); ?>
			</p>
			<div>
				<a href="<?php echo ($cl['reset_url']); ?>" style="text-decoration: none;">
					<button style="font-size: 12px; font-weight: 500; cursor: pointer; border-radius: 2px; text-transform: uppercase; padding: 10px 20px; border: none; background: #1ca1f3; color: #fff; box-shadow: none; outline: 0;">
						<?php echo cl_translate("Reset my password"); ?>
					</button>
				</a>
			</div>
		</div>
	</div>
	<p style="font-size: 13px; color: #5b7083;">
		<?php echo cl_translate('You received this email because you are a registered <a href="{@site_url@}" style="color: #1b95e0;">{@site_name@}</a> user. <br> If you have any questions, the answers can be found in the F.A.Qs section.', array(
			"site_name" => $cl["config"]["name"],
			"site_url" => $cl["config"]["url"]
		)); ?>
	</p>
	<p style="font-size: 14px; color: #5b7083; padding: 0; margin: 0;">
		<span>
			<a href="{%config site_url%}" style="color: #1b95e0;">{%config name%}</a> - <?php echo cl_translate("Support team"); ?>.
		</span>
	</p>
</div>