We'll use placeholders to tell users where to type in their email and password, and a checkbox to let new users sign up for email updates.

<html>
<body>
<h4>Company Name</h4>
<input placeholder="Email">
<br>
<input placeholder="Password" type="password">
<br>
<input type="Checkbox">
<em>Send me updates</em>
<br>
<button>Sign up</button>
</body>
</html>]]>