Gmail inbox login box

The Gmail inbox login box!

Here's the HTML code for the Gmail inbox login box:

<form action="https://accounts.google.com/signin/v2/identifier" method="post">
  <input type="email" name="Email" placeholder="Email or phone" required>
  <input type="password" name="Passwd" placeholder="Password" required>
  <input type="hidden" name="service" value="mail">
  <input type="hidden" name="rm" value="true">
  <input type="hidden" name="continue" value="https://mail.google.com/mail/">
  <button type="submit">Sign in</button>
</form>

Let me explain what each part of the code does:

Note that this code is just a representation of the Gmail inbox login box and is not an actual functional login form. You should not use this code to collect or store user credentials.