31 lines
1.4 KiB
HTML
31 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Emailbox for %Name%</title>
|
|
<link rel="stylesheet" href="./bootstrap.min.css">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>Emailbox for %Name%</h1>
|
|
<form action="./addtomailinglist" method="post" enctype="multipart/form-data">
|
|
<div class="mb-3">
|
|
<label for="exampleFormControlInput1" class="form-label">Email address</label>
|
|
<input type="email" class="form-control" name="email" id="exampleFormControlInput1" placeholder="name@example.com">
|
|
</div>
|
|
|
|
<input type="submit" class="btn btn-primary" value="Subscribe / Resend unsubscribe email">
|
|
</form>
|
|
<br>
|
|
<h3>Telemetry</h3>
|
|
<ul class="list-group">
|
|
<li class="list-group-item">Site loads (every time this page is loaded) <span class="badge text-bg-primary">%Loads%</span></li>
|
|
<li class="list-group-item">Viewers (every hashed ip) <span class="badge text-bg-primary">%Viewers%</span></li>
|
|
<li class="list-group-item">People in mailing list (all emails in mailing list) <span class="badge text-bg-primary">%Mailing%</span></li>
|
|
</ul>
|
|
<p>IP Addresses are hashed for privacy reasons, they are used to get the viewer count.</p>
|
|
</div>
|
|
<script src="./bootstrap.min.js"></script>
|
|
</body>
|
|
</html> |