Skip to content

Commit

Permalink
Create registration
Browse files Browse the repository at this point in the history
registration form for a person
  • Loading branch information
arunmaddela authored Oct 22, 2024
1 parent 4fe5040 commit ebd06f2
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions registration
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>User Registration Form</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h2>User Registration Form</h2>
<form>
<label for="name">Name:</label>
<input type="text" id="name" name="name" required><br>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required><br>
<label for="phone">Phone:</label>
<input type="tel" id="phone" name="phone" required><br>
<input type="submit" value="Submit">
</form>
</body>
</html>

0 comments on commit ebd06f2

Please sign in to comment.