Create verify.HTML
Browse files- templates/verify.HTML +12 -0
templates/verify.HTML
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html>
|
3 |
+
<head>
|
4 |
+
<title>Email Verification</title>
|
5 |
+
</head>
|
6 |
+
<body>
|
7 |
+
<h1>Email Verification</h1>
|
8 |
+
<p>Thank you for using our service. To complete the registration process, please verify your email address by clicking the link below:</p>
|
9 |
+
<a href="https://yourapp.com/verify/{{ verification_token }}">Verify Email</a>
|
10 |
+
<p>If you did not request this email, you can ignore it.</p>
|
11 |
+
</body>
|
12 |
+
</html>
|