20 lines
404 B
HTML
20 lines
404 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<!--
|
||
|
|
This page is displayed when a user opens a verify email link with a
|
||
|
|
security token that is expired, then requests to receive another email
|
||
|
|
with a new link and the email is sent successfully.
|
||
|
|
-->
|
||
|
|
<html>
|
||
|
|
|
||
|
|
<head>
|
||
|
|
<title>Email Verification</title>
|
||
|
|
</head>
|
||
|
|
|
||
|
|
<body>
|
||
|
|
<h1>{{appName}}</h1>
|
||
|
|
<h1>Link sent!</h1>
|
||
|
|
<p>A new link has been sent. Check your email.</p>
|
||
|
|
</body>
|
||
|
|
|
||
|
|
</html>
|