JSFiddle - React, Tailwind, and code Playground
by jrm2k6
HTML
<form name='loginform' id='loginform' action='#' method='post' >
<input type='text' name='user_login' id='user_login' class='login-header' value='Username'>
<input type='password' name='user_pass' id='user_pass' class='login-header' value='password'><label style='color:#ffffff;'>
<input type='submit' name='login' id='login' value='LogIn' tabindex='100' class='login-button' >
</form>
CSS
.login-button {
border : 1px solid Black;
background-color : #CCCCCC;
color : #0E1930;
font-size : 12px;
font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
font-weight : bold;
padding:4px 10px;
}
.login-header {
border : 1px solid Black;
background-color : #CCCCCC;
color : #0E1930;
font-size : 12px;
font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
font-weight : bold;
height: 2em;
}