Advertisement
joaopaulofcc

Untitled

Feb 23rd, 2022
756
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.93 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4.   <head>
  5.       <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css"
  6.        rel="stylesheet"
  7.        integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC"
  8.        crossorigin="anonymous">
  9.   </head>
  10.  
  11.   <body>
  12.     <form>
  13.         <div class="form-group row">
  14.           <label for="staticEmail" class="col-sm-2 col-form-label">Email</label>
  15.           <div class="col-sm-10">
  16.             <input type="text" readonly class="form-control-plaintext" id="staticEmail" value="email@exemplo.com">
  17.           </div>
  18.         </div>
  19.         <div class="form-group row">
  20.           <label for="inputPassword" class="col-sm-2 col-form-label">Senha</label>
  21.           <div class="col-sm-10">
  22.             <input type="password" class="form-control" id="inputPassword" placeholder="Senha">
  23.           </div>
  24.         </div>
  25.       </form>
  26.   </body>
  27.  
  28. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement