2020-02-24 04:43:53 +01:00
|
|
|
<?php
|
|
|
|
session_start();
|
|
|
|
%NO_CHEAP_SESSION_STEALING%
|
|
|
|
?>
|
2020-02-19 14:58:37 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>ThreadR - Sign Up</title>
|
|
|
|
<link rel="stylesheet" type="text/css" href="%CONTENT_DIR%/style.css">
|
2020-02-23 20:16:32 +01:00
|
|
|
<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">
|
|
|
|
|
2020-02-19 14:58:37 +01:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<ul class="topnav">
|
2020-02-23 01:03:04 +01:00
|
|
|
<li><a href="%CONTENT_DIR%/"><img src="%CONTENT_DIR%/img/ThreadR_Home.svg" alt="Home" /></a></li>
|
2020-02-19 14:58:37 +01:00
|
|
|
<li><a href="%CONTENT_DIR%/news/">News</a></li>
|
2020-02-19 22:56:07 +01:00
|
|
|
<li><a href="%CONTENT_DIR%/boards/">Boards</a></li>
|
2020-02-19 14:58:37 +01:00
|
|
|
<li><a href="%CONTENT_DIR%/about/">About</a></li>
|
|
|
|
<li class="right"><a class="active" href="%CONTENT_DIR%/login/">Log In</a></li>
|
|
|
|
</ul>
|
2020-02-19 23:30:29 +01:00
|
|
|
<br />
|
2020-02-19 14:58:37 +01:00
|
|
|
<div class="container">
|
|
|
|
<div class="item-1">
|
2020-02-24 08:17:36 +01:00
|
|
|
<h1><center>Create your ThreadR account</center></h1>
|
2020-02-19 14:58:37 +01:00
|
|
|
</div>
|
2020-02-24 21:13:53 +01:00
|
|
|
<div class="item-2 form">
|
2020-02-24 08:17:36 +01:00
|
|
|
<p>Sign up:</p>
|
2020-02-23 22:01:41 +01:00
|
|
|
<form action="%CONTENT_DIR%/signup/verify-email/" method="post">
|
2020-02-24 08:17:36 +01:00
|
|
|
<p>Username: <input type="text" name="username" placeholder="Username" /> </p>
|
|
|
|
<p>E-mail: <input type="text" name="email" placeholder="email@example.com" /> </p>
|
|
|
|
<p>Password: <input type="password" name="password" placeholder="Password" /> </p>
|
|
|
|
<p>Password confirmation: <input type="password" name="password_confirm" placeholder="Confirm password" /> </p>
|
2020-02-20 23:44:46 +01:00
|
|
|
<input type="submit" value="Register" />
|
2020-02-19 14:58:37 +01:00
|
|
|
</form>
|
2020-02-24 22:36:44 +01:00
|
|
|
<br /><br />
|
2020-02-19 14:58:37 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|