<!DOCTYPE html>
<html>
<head>
<title>User Registration</title>
</head>
<body>
<h1>User Registration</h1>
<form method="post" action="#">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required><br><br>
<label for="mobile">Mobile:</label>
<input type="tel" id="mobile" name="mobile" required><br><br>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required><br><br>
<label for="password">Password:</label>
<input type="password" id="password" name="password" required><br><br>
<input type="submit" value="Register">
</form>
</body>
</html>