JSFiddle - React, Tailwind, and code Playground

by Manirajss

HTML

<body>
<fieldset>
  <legend align="center">Login App:</legend>
<table>  
  <tr>
    <td>Name</td>
      <td><input type="text"/></td>
  </tr>
  <tr>
    <td>Password</td>
      <td><input type="password"/></td>
  </tr>
</table>
</fieldset>
</body>

CSS

<style>
fieldset {position: relative; width:50%}
legend {color:#893039 }
</style>