Add a Sign up button to make this webpage interactive.

<html>
<head><style>body {min-height: 350px;} input { font-size: 16px; } textarea { font-size: 16px; } </style></head>
<body>
  <img src="https://mimo.app/r/snapcat.png">
  <h3>Create an Account</h3>
  <input id="usernameInput" type="text" placeholder="Username">
  <br>
  <input id="phoneInput" type="text" placeholder="Phone number">
  <br>
  <button onclick="signUp()">Sign up</button>
</body>
</html>]]>

Make sure to assemble <button onclick="signUp()">Sign up</button>.