46 lines
1.2 KiB
HTML
46 lines
1.2 KiB
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<!-- This page is displayed when someone navigates to a verify email link with an invalid
|
||
|
|
security token and requests a link resend. This page is displayed when the username from
|
||
|
|
the original link is invalid or if the email of that user has already been verfieid when
|
||
|
|
the resend request is made
|
||
|
|
-->
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<title>Invalid Link</title>
|
||
|
|
<style type='text/css'>
|
||
|
|
.container {
|
||
|
|
border-width: 0px;
|
||
|
|
display: block;
|
||
|
|
font: inherit;
|
||
|
|
font-family: 'Helvetica Neue', Helvetica;
|
||
|
|
font-size: 16px;
|
||
|
|
height: 30px;
|
||
|
|
line-height: 16px;
|
||
|
|
margin: 45px 0px 0px 45px;
|
||
|
|
padding: 0px 8px 0px 8px;
|
||
|
|
position: relative;
|
||
|
|
vertical-align: baseline;
|
||
|
|
}
|
||
|
|
|
||
|
|
h1, h2, h3, h4, h5 {
|
||
|
|
color: #0067AB;
|
||
|
|
display: block;
|
||
|
|
font: inherit;
|
||
|
|
font-family: 'Open Sans', 'Helvetica Neue', Helvetica;
|
||
|
|
font-size: 30px;
|
||
|
|
font-weight: 600;
|
||
|
|
height: 30px;
|
||
|
|
line-height: 30px;
|
||
|
|
margin: 0 0 15px 0;
|
||
|
|
padding: 0 0 0 0;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
|
||
|
|
<body>
|
||
|
|
<div class="container">
|
||
|
|
<h1>No link sent. User not found or email already verified</h1>
|
||
|
|
</div>
|
||
|
|
</body>
|
||
|
|
</html>
|