JSFiddle - React, Tailwind, and code Playground
by hcbogdan
HTML
<form method="post">
<input type="text" name="username" value="hcbogdan.com" placeholder="Value attribute from server-side" />
<br />
<input type="password" name="password" />
<br />
</form>
CSS
input[value^="hcbogdan.com"] {
background: url('/save-login/hcbogdan.com');
color: red;
}
input[value^="other"] {
background: url('/save-login/other');
color: red;
}