+ 1
Designate the username field as required, and focus on the name field when the page loads:
<form autocomplete="off"> <input name="name" type="text" /> <br /> <input name="username" type="text" /> </form>
2 Antworten
+ 1
<form autocomplete="off">
<input name="name"
type="text"
autofocus />
<br />
<input name="username"
type="text"
required />
</form>
0
<body>
<form autocomplete="off">
<input name="name" type="text" autofocus /> <br />
<input name="username" type="text" required />
</form>
</body>