Match input types to the data and use button types to distinguish submit from other actions.
<input type="email" name="email" placeholder="you@example.com">
<input type="password" name="password" placeholder="Password">
<input type="checkbox" name="remember" id="remember">
<button type="submit">Log in</button>
<button type="button">Forgot password</button>