Rating:

[source](https://barelycompetent.dev/post/ctfs/2022-03-13-utctf/#login-as-admin-pt-2)

---

Note: These writeups are purposefully short. Each problem had a hint that made the problem trivial to solve.

This time, we're _given_ the login creds: `admin:admin`. However, when visiting the site, the login button appears grayed out. Using HTML inspect in a browser, you can see the button's relevant code:

```html
<input type="submit" id="submitButton" value="Log In" disabled>
```

If you edit that source to just delete the `disabled` keyword and then enter the credentials, you will login and get the flag.