34 lines
1.3 KiB
PHP
34 lines
1.3 KiB
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>ThreadR - Sign Up</title>
|
|
<link rel="stylesheet" type="text/css" href="%CONTENT_DIR%/style.css">
|
|
</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>Willkommen bei der Registrierung!</center></h1>
|
|
</div>
|
|
<div class="item-2 round-border">
|
|
<p>Sign Up:</p>
|
|
<form action="%CONTENT_DIR%/signup/redirect.php" method="post">
|
|
<p>Benutzername: <input type="text" name="username" placeholder="Benutzername"/> </p>
|
|
<p>E-Mail: <input type="text" name="email" placeholder="yeet@example.com"/> </p>
|
|
<p>Passwort: <input type="password" name="password" placeholder="Passwort"/> </p>
|
|
<p>Passwort bestätigen: <input type="password" name="pass" placeholder="Passwort bestätigen"/> </p>
|
|
<input type="submit" value="Register" />
|
|
</form>
|
|
<p></p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|