„content/signup.html“ ändern

master
flambus 2020-02-12 10:27:55 +01:00
parent 073ee02f29
commit 03b60e1b2a
1 changed files with 26 additions and 26 deletions

View File

@ -1,27 +1,27 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<title>Sign Up</title> <title>Sign Up</title>
<link rel="stylesheet" type="text/css" href="stylesheet.css"> <link rel="stylesheet" type="text/css" href="style.css">
</head> </head>
<body> <body>
<div class="container"> <div class="container">
<div class="item-1"> <div class="item-1">
<h1><center>Willkommen bei der Registrierung!</center></h1> <h1><center>Willkommen bei der Registrierung!</center></h1>
</div> </div>
<div class="item-2 round-border"> <div class="item-2 round-border">
<p>Sign Up:</p> <p>Sign Up:</p>
<form action="forwarding.php" method="post"> <form action="forwarding.php" method="post">
<p>Benutzername: <input type="text" name="user" placeholder="Benutzername"/> </p> <p>Benutzername: <input type="text" name="user" placeholder="Benutzername"/> </p>
<p>E-Mail: <input type="text" name="email" placeholder="yeet@example.com"/> </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: <input type="password" name="password" placeholder="Passwort"/> </p>
<p>Passwort bestätigen: <input type="password" name="pass" placeholder="Passwort bestätigen"/> </p> <p>Passwort bestätigen: <input type="password" name="pass" placeholder="Passwort bestätigen"/> </p>
<input type="submit" value="Registrieren" /> <input type="submit" value="Registrieren" />
</form> </form>
<p></p> <p></p>
</div> </div>
</div> </div>
</div> </div>
</body> </body>
</html> </html>