Working on emails, updated swagger, added geometry column to airports
This commit is contained in:
53
templates/confirm_email.html
Normal file
53
templates/confirm_email.html
Normal file
@@ -0,0 +1,53 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0"/>
|
||||
<title>Confirm your email</title>
|
||||
<style>
|
||||
body { margin:0; padding:0; background:#f2f2f2; font-family:Helvetica,Arial,sans-serif; }
|
||||
.wrapper { width:100%; table-layout:fixed; background:#f2f2f2; padding:40px 0; }
|
||||
.main { background:#ffffff; width:600px; margin:0 auto; border-radius:6px; overflow:hidden; }
|
||||
.header { background:#fff; text-align:center; padding:30px; }
|
||||
.header img { width:60px; height:auto; display:block; margin:0 auto 10px; }
|
||||
.header h1 { margin:0; font-size:24px; color:#333333; }
|
||||
.header p { margin:5px 0 0; font-size:14px; color:#777777; }
|
||||
.content { padding:30px; color:#333333; font-size:16px; line-height:1.5; }
|
||||
.content h2 { margin-top:0; font-size:20px; }
|
||||
.btn-wrap { text-align:center; margin:30px 0; }
|
||||
.btn { background:#007bff; color:#ffffff !important; text-decoration:none; padding:12px 24px; border-radius:4px; display:inline-block; font-size:16px; }
|
||||
.footer { text-align:center; padding:20px; font-size:12px; color:#999999; }
|
||||
.footer a { color:#999999; text-decoration:none; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="wrapper">
|
||||
<div class="main">
|
||||
|
||||
<!-- header -->
|
||||
<div class="header">
|
||||
<img src="{{logo_url}}" alt="Aviation Data Logo" />
|
||||
<h1>Aviation Data</h1>
|
||||
<p>Your source for aviation data</p>
|
||||
</div>
|
||||
|
||||
<!-- body -->
|
||||
<div class="content">
|
||||
<h2>Confirm Your Email</h2>
|
||||
<p>Thanks for signing up! Please confirm your email address by clicking the button below:</p>
|
||||
<div class="btn-wrap">
|
||||
<a href="{{{link}}}" class="btn">Confirm my email</a>
|
||||
</div>
|
||||
<p>If you didn’t create an account with us, you can safely ignore this email.</p>
|
||||
<p>Cheers,<br/>The Aviation Data Team</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- footer -->
|
||||
<div class="footer">
|
||||
Serving the Aviation Community<br/>
|
||||
<a href="{{domain}}">{{domain}}</a> | © {{year}} Aviation Data
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user