BodgeMaster 2020-02-23 21:40:35 +01:00
commit 8fe07541b5
2 changed files with 45 additions and 1 deletions

View File

@ -34,3 +34,4 @@ This way, it is possible to change folder names around and fix the URLs in one p
* frontend: dropdown menus?
* internal status site: add fail2ban status
* add reverse proxy or similar to admin tools to a user account locked external page
* %TOKEN% for email verification

View File

@ -0,0 +1,43 @@
<!DOCTYPE html>
<html>
<head>
<title>ThreadR - Verification</title>
<link rel="stylesheet" type="text/css" href="%CONTENT_DIR%/style.css">
<link rel="icon" type="image/png" href="%CONTENT_DIR%/img/favicon-32x32.png" sizes="32x32" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<ul class="topnav">
<li><a href="%CONTENT_DIR%/"><img src="%CONTENT_DIR%/img/ThreadR_Home.svg" alt="Home" /></a></li>
<!-- <li><a class="dropdown">
<button class="dropbtn">News
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="#">Link 1</a>
<a href="#">Link 2</a>
<a href="#">Link 3</a>
</div>
</div> -->
<li><a href="%CONTENT_DIR%/news/">News</a></li>
<li><a href="%CONTENT_DIR%/boards/">Boards</a></li>
<li><a href="%CONTENT_DIR%/about/">About</a></li>
<li class="right"><a class="active" href="%CONTENT_DIR%/login/">Log In</a></li>
</ul>
<br />
<div class="container">
<div class="item-1">
<h1>
<center>E-Mail-Verifikation</center>
</h1>
</div>
<div class="item-2 round-border">
<p>Bitte senden sie eine E-Mail mit folgendem Inhalt an <a href = "mailto: signup@lostcave.ddnss.de">signup@lostcave.ddnss.de</a>:</p>
<form action="%CONTENT_DIR%/signup/verify-email/redirect.php" method="post">
<!-- TODO: add token generator -->
<p>%TOKEN%</p>
<input type="submit" value="Weiter" />
</div>
</div>
</body>
</html>