„content/login.html“ ändern

master
flambus 2020-02-17 08:54:30 +01:00
parent 2c0a0b2862
commit ff6fee4055
2 changed files with 32 additions and 58 deletions

View File

@ -1,58 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<title>Home page</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {margin: 0;}
ul.topnav {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
}
ul.topnav li {float: left;}
ul.topnav li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
ul.topnav li a:hover:not(.active) {background-color: #111;}
ul.topnav li a.active {background-color: #4CAF50;}
ul.topnav li.right {float: right;}
@media screen and (max-width: 600px) {
ul.topnav li.right,
ul.topnav li {float: none;}
}
</style>
</head>
<body>
<ul class="topnav">
<li><a class="active" href="#home">Home</a></li>
<li><a href="#news">News</a></li>
<li><a href="#contact">Contact</a></li>
<li class="right"><a href=".common/index.html">Log In</a></li>
</ul>
<div style="padding:0 16px;">
<h2>ThreadR Homepage</h2>
<p>This example use media queries to stack the topnav vertically when the screen size is 600px or less.</p>
<p>You will learn more about media queries and responsive web design later in our CSS Tutorial.</p>
<h4>Resize the browser window to see the effect.</h4>
</div>
</body>
</html>

32
content/login.html Normal file
View File

@ -0,0 +1,32 @@
<!DOCTYPE html>
<html>
<head>
<title>ThreadR - Welcome</title>
<link rel="stylesheet" type="text/css" href="content/style.css">
</head>
<body>
<div class="container">
<div class="item-1">
<h1><center>ThreadR</center></h1>
</div>
<div class="item-2 round-border">
<p>Login:</p>
<form action="./content/login.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="./content/homepage.html"> <button> Log in </button> </a>
</form>
<p></p>
</div>
<div class="item-3">
<p></p>
<a href="./content/signup.html"> <button> Sign up </button> </a>
<p></p>
</div>
<div class="item-4">
<center><a href="https://lostcave.ddnss.de/common/content/about/">About</a></center>
</div>
</div>
</body>
</html>