Does anyone know a simple and easy way to create a Log In page I´m looking for something basic just so I can present for class
The html should look something like this:
<form action="/login"> <input type="text" placeholder="username"> <input type="password" placeholder="password"> <input type="submit"> </form>
which will send a GET request to YOUR_URL/login?username=USERNAME&password=PASSWORD
GET
YOUR_URL/login?username=USERNAME&password=PASSWORD
Does anyone know a simple and easy way to create a Log In page I´m looking for something basic just so I can present for class
The html should look something like this:
which will send a
GET
request toYOUR_URL/login?username=USERNAME&password=PASSWORD