Fouet HTML
<!-- fieldset with email, max-length-password, submit & reset button-->
<form>
<fieldset>
<legend>Authentication</legend>
<label for="">Email:</label>
<input type="email" name="email">
<label for="">Password:</label>
<input type="password" maxlength="8">
<input type="submit" value="submit" target="submit">
<input type="button" value="reset" target="reset">
</fieldset>
</form>
Ciprian Vlad