favicon.ico Failed to load resource: the server responded with a status of 404 (Not Found)
1 2 3 4 5 6 7
|
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="shortcut icon" href="#"/>
|
add autoComplete
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
| const signInForm = () => ( <form> <div className="form-group"> <label className="text-muted">Email</label> <input onChange={handelChange} name="email" type="text" className="form-control" value={email} autoComplete="email" /> </div> <div className="form-group"> <label className="text-muted">Password</label> <input onChange={handelChange} name="password" type="password" className="form-control" value={password} autoComplete="new-password" /> </div> <button onClick={handelSubmit} className="btn btn-primary"> Submit </button> </form> );
|