To get your basic requirement the code is fairly simple:
Name: <input name="name" type="text" /><br/>
Password: <input name="password" type="text" /><br/>
Email: <input name="email" type="text" /><br/>
<input name="submit" type="submit" />
<input name="reset" type="reset" />
If you want to align the text fields without using CSS then a table could be used"
<table width="250" cellspacing="0" cellpadding="0">
<tr>
<td width="40%">Name:</td>
<td width="60%"><input name="name" type="text" /></td>
</tr>
<tr>
<td>Password: </td>
<td><input name="password" type="text" /></td>
</tr>
<tr>
<td>Email: </td>
<td><input name="email" type="text" /></td>
</tr>
<tr>
<td><input name="submit" type="submit" /></td>
<td><input name="reset" type="reset" /></td>
</tr>
</table>