mirror of
https://github.com/DI0IK/Aufgaben_WE_DHBW.git
synced 2025-07-05 16:48:48 +00:00
44 lines
1.6 KiB
HTML
44 lines
1.6 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="../../rick.html" method="get" 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">Ich bin dabei!</button>
|
|
|
|
<button type="button" class="secondary">Zurück zur Startseite</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|