54 lines
1.8 KiB
PHP
54 lines
1.8 KiB
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>ThreadR - Log In</title>
|
|
<link rel="stylesheet" type="text/css" href="%CONTENT_DIR%/style.css">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
</head>
|
|
<body>
|
|
<ul class="topnav">
|
|
<li><a href="%CONTENT_DIR%/">Home</a></li>
|
|
<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>ThreadR</center> </h1>
|
|
</div>
|
|
<div class="item-2 round-border">
|
|
<p>
|
|
<?php
|
|
if (isset($_GET['error'])){
|
|
if ($_GET['error'] == "credentials"){
|
|
echo "Invalid credentials. Try again:";
|
|
}
|
|
if ($_GET['error'] == "session"){
|
|
echo "Your session has been closed. We are sorry for the inconvenience.";
|
|
}
|
|
} else {
|
|
echo "Login:";
|
|
}
|
|
?></p>
|
|
<form action="%CONTENT_DIR%/login/redirect.php" method="post">
|
|
<input type="text" name="username" maxlength="20" placeholder="Username" />
|
|
<input type="password" name="password" maxlength="256" placeholder="Password" />
|
|
<p></p>
|
|
<input type="submit" value="Log in" />
|
|
</form>
|
|
<p></p>
|
|
</div>
|
|
<div class="item-3">
|
|
<p></p>
|
|
<a href="%CONTENT_DIR%/signup/"> <button> Register </button> </a>
|
|
<p></p>
|
|
</div>
|
|
<!-- <div class="item-4">
|
|
<center><a href="https://lostcave.ddnss.de%CONTENT_DIR%/about/">About</a></center>
|
|
</div> -->
|
|
</div>
|
|
</body>
|
|
</html>
|