Update Redditlikesignup.HTML
This commit is contained in:
parent
14ca536e18
commit
e0cc8edb4f
1 changed files with 20 additions and 12 deletions
|
@ -1,12 +1,20 @@
|
||||||
<form action="#" method="post">
|
<!DOCTYPE html>
|
||||||
<h2>Sign Up</h2>
|
<html>
|
||||||
<label for="username">Username:</label>
|
<head>
|
||||||
<input type="text" id="username" name="username" required>
|
<title>Sign Up Form</title>
|
||||||
<label for="email">Email:</label>
|
</head>
|
||||||
<input type="email" id="email" name="email" required>
|
<body>
|
||||||
<label for="password">Password:</label>
|
<form action="signup.php" method="post">
|
||||||
<input type="password" id="password" name="password" required>
|
<h2>Sign Up</h2>
|
||||||
<label for="confirm-password">Confirm Password:</label>
|
<label for="username">Username:</label>
|
||||||
<input type="password" id="confirm-password" name="confirm-password" required>
|
<input type="text" id="username" name="username" required>
|
||||||
<button type="submit">Sign Up</button>
|
<label for="email">Email:</label>
|
||||||
</form>
|
<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>
|
||||||
|
|
Loading…
Add table
Reference in a new issue