2020-02-24 04:43:53 +01:00
|
|
|
<?php
|
|
|
|
session_start();
|
2020-03-02 14:12:47 +01:00
|
|
|
%PLEAZE_NO_CACHE%
|
2020-02-24 04:43:53 +01:00
|
|
|
%NO_CHEAP_SESSION_STEALING%
|
2020-02-26 19:03:55 +01:00
|
|
|
$navbar = "signup";
|
2020-02-24 04:43:53 +01:00
|
|
|
?>
|
2020-02-19 14:58:37 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>ThreadR - Sign Up</title>
|
2020-03-05 04:56:06 +01:00
|
|
|
%STYLESHEET%
|
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>
|
2020-02-26 19:03:55 +01:00
|
|
|
%NAVBAR%
|
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-03-08 04:09:34 +01:00
|
|
|
<div class="item-2">
|
|
|
|
<section>
|
|
|
|
<p>Sign up:</p>
|
|
|
|
<form action="%CONTENT_DIR%/signup/verify-email/" method="post">
|
|
|
|
<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>
|
|
|
|
<input type="submit" value="Register" />
|
|
|
|
</form>
|
|
|
|
<p></p>
|
|
|
|
</section>
|
2020-02-19 14:58:37 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|