Advertisement
Guest User

Untitled

a guest
Dec 7th, 2019
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.37 KB | None | 0 0
  1. <form id="form-login" class="form" action="/" method="post">
  2.     <fieldset class="form__wrapper">
  3.         <div class="form__inner">
  4.             <header class="form__header">
  5.                 <h2 class="section-title">
  6.                     Login
  7.                 </h2>
  8.             </header>
  9.  
  10.             <div class="form__field-container">
  11.                 <label class="form-field">
  12.                     <input class="form-field__core" name="email" type="text" placeholder="E-mail" />
  13.                 </label>
  14.             </div>
  15.  
  16.             <div class="form__field-container">
  17.                 <label class="form-field">
  18.                     <input class="form-field__core" name="password" type="password" placeholder="Hasło" />
  19.                 </label>
  20.             </div>
  21.  
  22.             <div class="form__button-container">
  23.                 <button class="button" type="submit">
  24.                     <div class="button__wrapper">
  25.                         <div class="button__inner">
  26.                             Zaloguj
  27.                         </div>
  28.                     </div>
  29.                 </button>
  30.             </div>
  31.  
  32.             <div class="form__info-container">
  33.                 <div class="form__info-wrapper">
  34.                     <div class="form__info">
  35.  
  36.                     </div>
  37.                 </div>
  38.             </div>
  39.         </div>
  40.     </fieldset>
  41. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement