Javascript AJAX jQuery HTML PHP Example MORE

How to place two forms on the same page HTML

<!DOCTYPE html>
<html>
<body>
<form action="login.php" method="post">
<input type="text" name="user_name">
<input type="password" name="password">
<input type="submit" value="Login">
</form>
<br />
<form action="register.php" method="post">
<input type="text" name="user_name">
<input type="email" name="email">
<input type="password" name="password">
<input type="submit" value="Register">
</form>
</body>
</html>

Output