Update Redditlikesignup.HTML

This commit is contained in:
Dangrainage 2023-07-21 13:17:51 +02:00 committed by GitHub
parent 14ca536e18
commit e0cc8edb4f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,12 +1,20 @@
<form action="#" method="post">
<h2>Sign Up</h2>
<label for="username">Username:</label>
<input type="text" id="username" name="username" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="password">Password:</label>
<input type="password" id="password" name="password" required>
<label for="confirm-password">Confirm Password:</label>
<input type="password" id="confirm-password" name="confirm-password" required>
<button type="submit">Sign Up</button>
</form>
<!DOCTYPE html>
<html>
<head>
<title>Sign Up Form</title>
</head>
<body>
<form action="signup.php" method="post">
<h2>Sign Up</h2>
<label for="username">Username:</label>
<input type="text" id="username" name="username" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="password">Password:</label>
<input type="password" id="password" name="password" required>
<label for="confirm-password">Confirm Password:</label>
<input type="password" id="confirm-password" name="confirm-password" required>
<button type="submit">Sign Up</button>
</form>
</body>
</html>