added placeholder files and fixed a few links
parent
6887ea4fac
commit
7429b14a10
|
@ -9,7 +9,7 @@
|
|||
<ul class="topnav">
|
||||
<li><a href="index.html">Home</a></li>
|
||||
<li><a href="#news">News</a></li>
|
||||
<li><a href="./about/index.html">About</a></li>
|
||||
<li><a href="/common/content/about/">About</a></li>
|
||||
<li class="right"><a class="active" href="login.html">Log In</a></li>
|
||||
</ul>
|
||||
|
||||
|
@ -25,17 +25,17 @@
|
|||
</div>
|
||||
<div class="item-2 round-border">
|
||||
<p>Login:</p>
|
||||
<form action="./content/login.php" method="post">
|
||||
<form action="/common/content/login/redirect.php" method="post">
|
||||
<input type="text" name="name" maxlength="20" placeholder="Username" />
|
||||
<input type="password" name="password" maxlength="256" placeholder="Password" />
|
||||
<p></p>
|
||||
<a href="homepage.html"> <button> Log in </button> </a>
|
||||
<a href="/common/"> <button> Log in </button> </a>
|
||||
</form>
|
||||
<p></p>
|
||||
</div>
|
||||
<div class="item-3">
|
||||
<p></p>
|
||||
<a href="signup.html"> <button> Sign up </button> </a>
|
||||
<a href="/common/content/signup/"> <button> Sign up </button> </a>
|
||||
<p></p>
|
||||
</div>
|
||||
<!-- <div class="item-4">
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
<ul class="topnav">
|
||||
<li><a href="index.html">Home</a></li>
|
||||
<li><a href="#news">News</a></li>
|
||||
<li><a href="./about/index.html">About</a></li>
|
||||
<li><a href="/common/content/about">About</a></li>
|
||||
<li class="right"><a href="login.html">Log In</a></li>
|
||||
</ul>
|
||||
|
||||
|
@ -24,7 +24,7 @@
|
|||
</div>
|
||||
<div class="item-2 round-border">
|
||||
<p>Sign Up:</p>
|
||||
<form action="forwarding.php" method="post">
|
||||
<form action="/common/content/signup/redirect.php" method="post">
|
||||
<p>Benutzername: <input type="text" name="user" 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>
|
||||
|
|
|
@ -5,5 +5,5 @@
|
|||
|
||||
<body>
|
||||
<h1> ThreadR </h1>
|
||||
<h2> Welcome back $get</h2>
|
||||
<h2> Welcome back, <?php echo $_GET['username']; ?>!</h2>
|
||||
|
|
@ -2,17 +2,16 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>Home page</title>
|
||||
<link rel="stylesheet" type="text/css" href="./content/stylesheet.css">
|
||||
<link rel="stylesheet" type="text/css" href="/common/content/stylesheet.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<!-- Woo! WebHook! -->
|
||||
<ul class="topnav">
|
||||
<li><a class="active" href="#home">Home</a></li>
|
||||
<li><a href="#news">News</a></li>
|
||||
<li><a href="/common/content/about/">About</a></li>
|
||||
<li class="right"><a href="./content/login.html">Log In</a></li>
|
||||
<li class="right"><a href="/common/content/login/">Log In</a></li>
|
||||
</ul>
|
||||
|
||||
<div style="padding:0 16px;">
|
||||
|
|
Loading…
Reference in New Issue