Pracownia.Programowania/templates/signup.html

21 lines
459 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<form method="post">
<input type="email" name="username" placeholder="email"><br>
<input type="password" name="password" placeholder="password"><br>
<input type="text" name="firstname" placeholder="first name"><br>
<input type="text" name="lastname" placeholder="last name"><br>
<input type="submit">
</form>
</body>
</html>