27 lines
975 B
HTML
27 lines
975 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="de">
|
||
|
<head>
|
||
|
<link rel="stylesheet" href="signup-page-style.css">
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>FVS-Social</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<div class="container" >
|
||
|
|
||
|
|
||
|
<div class="col-4 login-body" >
|
||
|
<img class="login-logo" src="../img/Logomark.png" alt="Logo">
|
||
|
<h2>Sign Up</h2>
|
||
|
<form class="login-form" action="signup.php" method="POST">
|
||
|
<input type="text" placeholder="Benutzername" name="username">
|
||
|
<input type="email" placeholder="E-Mail" name="email">
|
||
|
<input type="password" placeholder="Passwort" name="password">
|
||
|
<button class="login-button" name="signup" type="submit">Regestrieren</button>
|
||
|
</form>
|
||
|
<p>Bereits angemeldet?<a href="../login/login-page.html">Jetzt Einloggen!</a></p>
|
||
|
</div>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|