19 lines
335 B
HTML
19 lines
335 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<!--
|
||
|
|
This page is displayed when a user opens a verify email link and the
|
||
|
|
email gets verified successfully.
|
||
|
|
-->
|
||
|
|
<html>
|
||
|
|
|
||
|
|
<head>
|
||
|
|
<title>Email Verification</title>
|
||
|
|
</head>
|
||
|
|
|
||
|
|
<body>
|
||
|
|
<h1>{{appName}}</h1>
|
||
|
|
<h1>Email verified!</h1>
|
||
|
|
<p>Successfully verified your email for account: {{username}}.</p>
|
||
|
|
</body>
|
||
|
|
|
||
|
|
</html>
|