Skip to content

Instantly share code, notes, and snippets.

@yogarani03
Created June 23, 2025 07:46
Show Gist options
  • Save yogarani03/8fe448bb6aa9903469f7b235c5dca354 to your computer and use it in GitHub Desktop.
Save yogarani03/8fe448bb6aa9903469f7b235c5dca354 to your computer and use it in GitHub Desktop.
registration.html
<!DOCTYPE html>
<html>
<head>
<title>Registration Form</title>
</head>
<body>
<h2>Create Account</h2>
<form>
<label>Username:</label><br>
<input type="text" name="username"><br><br>
<label>Email:</label><br>
<input type="email" name="email"><br><br>
<label>Password:</label><br>
<input type="password" name="password"><br><br>
<button type="submit">Sign Up</button>
</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment