confirm-email.html: add file

Closes https://gitlab.com/commento/commento-ce/issues/66
This commit is contained in:
Adhityaa Chandrasekar 2018-08-08 22:32:30 +05:30
parent b6dc79edd7
commit f3119e28fd
2 changed files with 27 additions and 0 deletions

View File

@ -95,6 +95,7 @@ func staticRouterInit(router *mux.Router) error {
"forgot", "forgot",
"reset-password", "reset-password",
"signup", "signup",
"confirm-email",
"dashboard", "dashboard",
"logout", "logout",
} }

View File

@ -0,0 +1,26 @@
<html>
<head>
<meta name="viewport" content="user-scalable=no, initial-scale=1.0">
<script src="[[[.CdnPrefix]]]/js/jquery.js"></script>
<link rel="stylesheet" href="[[[.CdnPrefix]]]/css/auth.css">
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700|Source+Sans+Pro:200,300,400,700" rel="stylesheet">
<title>Commento: Email Confirmation</title>
</head>
<div class="navbar">
<a href="[[[.Origin]]]/" class="navbar-item navbar-logo-text"><img src="[[[.CdnPrefix]]]/images/logo.svg" class="navbar-logo">Commento</a>
<a href="[[[.Origin]]]/login" class="navbar-item">Login</a>
<a href="[[[.Origin]]]/signup" class="navbar-item">Signup</a>
</div>
<div class="auth-form-container">
<div class="auth-form">
<div class="form-title">
Confirmation Email Sent!
</div>
A confirmation email has been sent to your email address. Follow the instructions by clicking the link there to complete the signup process.
</div>
</div>
[[[.Footer]]]
</html>