DHBW_WE_Aufgaben/PlantX/register/index.html

56 lines
2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>PlantX</title>
<link rel="stylesheet" href="../styles/reset.css" />
<link rel="stylesheet" href="../styles/colors.css" />
<link rel="stylesheet" href="../styles/fonts.css" />
<link rel="stylesheet" href="../styles/buttons.css" />
<link rel="stylesheet" href="../styles/input-groups.css" />
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<div class="background-gradient"></div>
<div class="content">
<h1 class="font-title-m">Willkommen bei PlantX!</h1>
<p class="font-body-m">
Registriere dich, teile deine Freude an Pflanzen und lerne von einer
großartigen Community!
</p>
<form action="/register" method="post" class="font-body-s">
<div class="input-group">
<label for="username"> Dein Name </label>
<input name="name" id="username" type="text" />
</div>
<div class="input-group">
<label for="mail"> E-Mail </label>
<input name="email" id="mail" type="email" />
</div>
<div class="input-group">
<label for="password"> Passwort </label>
<input name="password" id="password" type="password" />
</div>
<div class="button-group">
<button
type="submit"
class="primary"
onclick="location.href='https:\/\/www.youtube.com/embed/dQw4w9WgXcQ?autoplay=1&controls=0&disablekb=1&fs=0&loop=1&modestbranding=1&rel=0'"
>
Ich bin dabei!
</button>
<button
type="button"
class="secondary"
onclick="location.href='https:\/\/www.youtube.com/embed/dQw4w9WgXcQ?autoplay=1&controls=0&disablekb=1&fs=0&loop=1&modestbranding=1&rel=0'"
>
Zurück zur Startseite
</button>
</div>
</form>
</div>
</body>
</html>