Advertisement
Guest User

Untitled

a guest
Jan 18th, 2020
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.09 KB | None | 0 0
  1. <% include components/header.ejs %>
  2.     <main>
  3.         <div class="container">
  4.             <div class="container">
  5.                 <div class="row">
  6.                     <div class="col text-center text-white">
  7.  
  8.                     </div>
  9.                 </div>
  10.                 <div id="login-form" class="row justify-content-center mt-5">
  11.                     <div class="col-lg-6 col-md-8 col-10">
  12.                         <div class="card">
  13.  
  14.                             <h5 class="card-header info-color white-text text-center py-4">
  15.                                 <strong>Sign in</strong>
  16.                             </h5>
  17.  
  18.                             <!--Card content-->
  19.                             <div class="card-body px-lg-5 pt-0">
  20.  
  21.                                 <!-- Form -->
  22.                                 <form class="text-center" style="color: #757575;" action="#!">
  23.  
  24.                                     <!-- Name -->
  25.                                     <div class="md-form mt-3">
  26.                                         <input type="text" id="materialContactFormName" class="form-control">
  27.                                         <label for="materialContactFormName">Name</label>
  28.                                     </div>
  29.  
  30.                                     <!-- E-mail -->
  31.                                     <div class="md-form">
  32.                                         <input type="email" id="materialContactFormEmail" class="form-control">
  33.                                         <label for="materialContactFormEmail">E-mail</label>
  34.                                     </div>
  35.                                     <!-- Send button -->
  36.                                     <button class="btn btn-outline-info btn-rounded btn-block z-depth-0 my-4 waves-effect" type="submit">Send</button>
  37.  
  38.                                 </form>
  39.                                 <!-- Form -->
  40.  
  41.                             </div>
  42.  
  43.                         </div>
  44.                     </div>
  45.                 </div>
  46.             </div>
  47.         </div>
  48.     </main>
  49. <% include components/footer.ejs %>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement