Create registration_successful.html
Browse files
templates/registration_successful.html
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html>
|
3 |
+
<head>
|
4 |
+
<title>Registration Successful</title>
|
5 |
+
</head>
|
6 |
+
<body>
|
7 |
+
<h1>Registration Successful</h1>
|
8 |
+
<p>Your registration was successful. You can now log in to access protected content.</p>
|
9 |
+
<a href="/login">Login</a>
|
10 |
+
</body>
|
11 |
+
</html>
|